aboutsummaryrefslogtreecommitdiffstats
path: root/buch/papers/reedsolomon/tikz
diff options
context:
space:
mode:
authorJODBaer <JODBaer@github.com>2021-08-04 11:22:14 +0200
committerJODBaer <JODBaer@github.com>2021-08-04 11:22:14 +0200
commit4215ac353f9234914d5564f82f85045debb40d0b (patch)
tree440150a49d0880aaacd99050fe1d8b5f73308f1b /buch/papers/reedsolomon/tikz
parentdtf ausgeschrieben (diff)
downloadSeminarMatrizen-4215ac353f9234914d5564f82f85045debb40d0b.tar.gz
SeminarMatrizen-4215ac353f9234914d5564f82f85045debb40d0b.zip
save changes
Diffstat (limited to 'buch/papers/reedsolomon/tikz')
-rw-r--r--buch/papers/reedsolomon/tikz/plotfft.tex39
1 files changed, 24 insertions, 15 deletions
diff --git a/buch/papers/reedsolomon/tikz/plotfft.tex b/buch/papers/reedsolomon/tikz/plotfft.tex
index 3b0c421..77c4dc3 100644
--- a/buch/papers/reedsolomon/tikz/plotfft.tex
+++ b/buch/papers/reedsolomon/tikz/plotfft.tex
@@ -8,7 +8,7 @@
\usepackage{pgfplotstable}
\usepackage{csvsimple}
\usepackage{filecontents}
-\definecolor{darkgreen}{RGB}{0,0.6,0}
+
\begin{document}
@@ -29,12 +29,13 @@
\node(codiert) [] {
\begin{tikzpicture}[]
- \begin{axis}[ title = {\Large {Codiert \space + \space Fehler}},
- xtick={0,40,60,100}, axis y line*=left]
- \addplot[darkgreen] table[col sep=comma] {tikz/codiert.txt};
+ % Beschriftung Rechts
+ \begin{axis}[axis x line= none, axis y line*=right,ytick={0}]
+ \addplot[color=white] {0};
\end{axis}
- \begin{axis}[xtick={7,21,75}, axis y line*=right]
- \addplot[red] table[col sep=comma] {tikz/fehler.txt};
+
+ \begin{axis}[ title = {\Large {Codiert}}, axis y line*=left]
+ \addplot[color=black!60!green] table[col sep=comma] {tikz/codiert.txt};
\end{axis}
\end{tikzpicture}}; \\
@@ -47,8 +48,12 @@
\node(empfangen) [] {
\begin{tikzpicture}
- \begin{axis}[title = {\Large {Empfangen}}]
- \addplot[darkgreen] table[col sep=comma] {tikz/empfangen.txt};
+ \begin{axis}[title = {\Large {Empfangen \space + \space Fehler}},
+ xtick={0,40,60,100}, axis y line*=left]
+ \addplot[color=black!60!green] table[col sep=comma] {tikz/empfangen.txt};
+ \end{axis}
+ \begin{axis}[xtick={7,21,75}, axis y line*=right]
+ \addplot[red] table[col sep=comma] {tikz/fehler.txt};
\end{axis}
\end{tikzpicture}};\\
@@ -61,7 +66,12 @@
\node(locator) [] {
\begin{tikzpicture}
- \begin{axis}[title = {\Large {Locator}}]
+ % Beschriftung Rechts
+ \begin{axis}[axis x line= none, axis y line*=right, ytick={0.3}];
+ \addplot[color=black!60] {0.3};
+ \end{axis}
+
+ \begin{axis}[title = {\Large {Locator}},axis y line*=left]
\addplot[gray] table[col sep=comma] {tikz/locator.txt};
\end{axis}
\end{tikzpicture}};\\
@@ -75,7 +85,6 @@
\node(FFT) [scale=0.9, above of=IFFT] {FFT};
\draw[-stealth](FFT.north west)--(FFT.north east);
- \draw[thick, ->,] (codiert)++(-1,0) +(0.05,0.5) -- +(-0.1,-0.1) -- +(0.1,0.1) -- +(0,-0.5);
%Arrows
\draw[thick, ->] (signal.east) to (codiert.west);
\draw[thick, ->] (codiert.south) to (empfangen.north);
@@ -86,10 +95,10 @@
%item
\node[circle, draw, fill =lightgray] at (signal.north west) {1};
- \node[circle, draw, fill =lightgray] at (codiert.north west) {2+3};
- \node[circle, draw, fill =lightgray] at (empfangen.north west) {4};
- \node[circle, draw, fill =lightgray] at (decodiert.north west) {5};
- \node[circle, draw, fill =lightgray] at (syndrom.north west) {6};
- \node[circle, draw, fill =lightgray] at (locator.north west) {7};
+ \node[circle, draw, fill =lightgray] at (codiert.north west) {2};
+ \node[circle, draw, fill =lightgray] at (empfangen.north west) {3};
+ \node[circle, draw, fill =lightgray] at (decodiert.north west) {4};
+ \node[circle, draw, fill =lightgray] at (syndrom.north west) {5};
+ \node[circle, draw, fill =lightgray] at (locator.north west) {6};
\end{tikzpicture}
\end{document} \ No newline at end of file