aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/zeta/images/zetaplot.tex
diff options
context:
space:
mode:
authorhaddoucher <reda.haddouche@ost.ch>2022-08-16 14:36:07 +0200
committerhaddoucher <reda.haddouche@ost.ch>2022-08-16 14:36:07 +0200
commitf031b148a79d1dafb0e3405643be05e7a7eb1222 (patch)
tree3f0c7d27ba90e10874a885cae9026fdbaa0b01e6 /buch/papers/zeta/images/zetaplot.tex
parentUpdate tschebyscheff_beispiel.tex (diff)
parentMerge pull request #5 from haddoucher/sturmliouville/erik-branch (diff)
downloadSeminarSpezielleFunktionen-f031b148a79d1dafb0e3405643be05e7a7eb1222.tar.gz
SeminarSpezielleFunktionen-f031b148a79d1dafb0e3405643be05e7a7eb1222.zip
Merge remote-tracking branch 'origin/master' into sturmliouville/redabranch
Diffstat (limited to 'buch/papers/zeta/images/zetaplot.tex')
-rw-r--r--buch/papers/zeta/images/zetaplot.tex47
1 files changed, 47 insertions, 0 deletions
diff --git a/buch/papers/zeta/images/zetaplot.tex b/buch/papers/zeta/images/zetaplot.tex
new file mode 100644
index 0000000..521bb1a
--- /dev/null
+++ b/buch/papers/zeta/images/zetaplot.tex
@@ -0,0 +1,47 @@
+%
+% zetaplot.tex -- Abbildung der kritischen Geraden
+%
+% (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}
+\begin{document}
+\def\skala{1}
+\begin{tikzpicture}[>=latex,thick,scale=\skala]
+
+\def\dx{2}
+\def\dy{2}
+
+\draw[->] ({-1.6*\dx},0) -- ({3.4*\dx},0)
+ coordinate[label={$\Re\zeta(\frac12+it)$}];
+\draw[->] (0,{-2.1*\dx}) -- (0,{2.2*\dx})
+ coordinate[label={left:$\Im\zeta(\frac12+it)$}];
+
+\foreach \x in {-1,1,2,3}{
+ \node at ({\x*\dx},-0.1) [below] {$\x$};
+}
+\node at (-0.1,{1*\dy}) [above left] {$i$};
+\node at (-0.1,{2*\dy}) [left] {$2i$};
+\node at (-0.1,{-1*\dy}) [below left] {$-i$};
+\node at (-0.1,{-2*\dy}) [left] {$-2i$};
+
+\foreach \x in {-1,1,2,3}{
+ \draw ({\x*\dx},-0.1) -- ({\x*\dx},0.1);
+}
+\foreach \y in {1,2}{
+ \draw (-0.1,{\y*\dy}) -- (0.1,{\y*\dy});
+ \draw (-0.1,{-\y*\dy}) -- (0.1,{-\y*\dy});
+}
+
+\input{papers/zeta/images/zetapath.tex}
+
+\draw[color=blue,line width=1pt] \zetapath;
+
+\end{tikzpicture}
+\end{document}
+