diff options
author | Andreas Müller <andreas.mueller@ost.ch> | 2021-07-22 08:13:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-22 08:13:09 +0200 |
commit | 19df8ee38a7240dbb0b1ed93c8f51bf507d491b8 (patch) | |
tree | e3a4cf741a20dc5a356de353cca3167996477638 /buch/papers/reedsolomon/RS presentation | |
parent | Merge pull request #43 from tschwall/master (diff) | |
parent | update (diff) | |
download | SeminarMatrizen-19df8ee38a7240dbb0b1ed93c8f51bf507d491b8.tar.gz SeminarMatrizen-19df8ee38a7240dbb0b1ed93c8f51bf507d491b8.zip |
Merge pull request #44 from JODBaer/Baer
Baer
Diffstat (limited to 'buch/papers/reedsolomon/RS presentation')
-rw-r--r-- | buch/papers/reedsolomon/RS presentation/images/polynom1 - Kopie.tex | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/buch/papers/reedsolomon/RS presentation/images/polynom1 - Kopie.tex b/buch/papers/reedsolomon/RS presentation/images/polynom1 - Kopie.tex new file mode 100644 index 0000000..038e93e --- /dev/null +++ b/buch/papers/reedsolomon/RS presentation/images/polynom1 - Kopie.tex @@ -0,0 +1,33 @@ +% polynome1 +%------------------- +\documentclass[tikz]{standalone} +\usepackage{amsmath} +\usepackage{times} +\usepackage{txfonts} +\usepackage{pgfplots} +\usepackage{csvsimple} +\usetikzlibrary{arrows,intersections,math} +\newcommand{\teiler}{40} +\begin{document} + + +\begin{tikzpicture}[>=latex,thick] + + \begin{axis}[ + axis lines = left, + xlabel = \(x\), + ylabel = {\(f(x)\)}, + ] + %Below the red parabola is defined + \addplot[ + color=blue, + ] + coordinates { + (0,23.1)(10,27.5)(20,32)(30,37.8)(40,44.6)(60,61.8)(80,83.8)(100,114) + }; + %Here the blue parabola is defined + + \end{axis} +\end{tikzpicture} +\end{document} + |