aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/110-elliptisch/images/ellpolnul.tex
blob: fe1d2354c2dcd5732f53e100f569e3e64fe9fc4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
%
% ellpolnul.tex -- template for standalon tikz images
%
% (c) 2021 Prof Dr Andreas Müller, OST Ostschweizer Fachhochschule
%
\documentclass[tikz]{standalone}
\usepackage{amsmath}
\usepackage{times}
\usepackage{txfonts}
\usepackage{pgfplots}
\usepackage{csvsimple}
\usetikzlibrary{arrows,intersections,math,calc}
\begin{document}
\input{ellcommon.tex}
\def\skala{1}
\begin{tikzpicture}[>=latex,thick,scale=\skala]

\input rechteckpfade3.tex

\pgfmathparse{1/\xmax}
\xdef\dx{\pgfmathresult}
\xdef\dy{\dx}

\netz{0.1pt}
\draw[line width=0.1pt] (-1,0) -- (1,0);
\fill[color=white,opacity=0.5] (-1,-1) rectangle (1,1);
\draw (-1,-1) rectangle (1,1);
\node at (-1,-1) [below left] {$0$};
\node at (1,-1) [below right] {$K$};
\node at (1,1) [above right] {$K+iK'$};
\node at (-1,1) [above left] {$iK'$};
\node at (0,0) {$u$};

\begin{scope}[xshift=4cm]
\rechteck{rot}{\operatorname{sn}(u,k)}
\nullstelle{(-1,-1)}{rot}
\pol{(-1,1)}{rot}
\node at (-1,-1) {$0$};
\node at (1,-1) {$1$};
\node at (1,1) {$\frac1k$};
\node at (-1,1) {$\infty$};
\end{scope}

\begin{scope}[xshift=7cm]
\rechteck{blau}{\operatorname{cn}(u,k)}
\nullstelle{(1,-1)}{blau}
\pol{(-1,1)}{blau}
\node at (-1,-1) {$1$};
\node at (1,-1) {$0$};
\node at (1,1) {$\frac{k'}{ik}$};
\node at (-1,1) {$\infty$};
\end{scope}

\begin{scope}[xshift=10cm]
\rechteck{gruen}{\operatorname{dn}(u,k)}
\nullstelle{(1,1)}{gruen}
\pol{(-1,1)}{gruen}
\node at (-1,-1) {$1$};
\node at (1,-1) {$k'$};
\node at (1,1) {$0$};
\node at (-1,1) {$\infty$};
\end{scope}

\end{tikzpicture}
\end{document}