The witch of Agnesi
This commit is contained in:
parent
07ed107c3b
commit
4e25ef6de6
|
@ -0,0 +1,20 @@
|
|||
\documentclass{standalone}
|
||||
%
|
||||
\usepackage{tikz}
|
||||
\usepackage{pgfplots}
|
||||
\pgfplotsset{width=10cm,compat=1.9}
|
||||
|
||||
\usepackage{xcolor}
|
||||
\definecolor{space}{HTML}{0A2543}
|
||||
%
|
||||
\title{The Witch of Agnesi}
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[domain=-15:15]
|
||||
\begin{scope}[scale=2]
|
||||
\begin{axis}
|
||||
\foreach \a in {1,2,4,8}
|
||||
\addplot [domain=-15:15, samples=100, color=space, thick]{8 * \a^2 / (x^2 + 4 * \a)};
|
||||
\end{axis}
|
||||
\end{scope}
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
Binary file not shown.
Loading…
Reference in New Issue