This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
FtmPrologic/tex/plots/DistErrorCdf.pgf

37 lines
1.8 KiB
Plaintext

\documentclass[tikz]{standalone}
\input{../PlotPreamble.tex}
\begin{document}
\small
\begin{tikzpicture}
\definecolor{cdfPlot1}{rgb}{1,0,0}
\definecolor{cdfPlot2}{rgb}{1,0.25,0}
\definecolor{cdfPlot3}{rgb}{1,0.5,0}
\definecolor{cdfPlot4}{rgb}{1,0.75,0}
\definecolor{cdfPlot5}{rgb}{0,0,1}
\definecolor{cdfPlot6}{rgb}{0,0.333,0.833}
\definecolor{cdfPlot7}{rgb}{0,0.666,0.666}
\definecolor{cdfPlot8}{rgb}{0,1,0.5}
\begin{axis}[
width=15.7cm,
height=6.5cm,
xlabel ={Distance error in \si{\meter}},
ylabel ={CDF},
legend pos=south east,
xmajorgrids=true,
%xminorgrids=true,
ymajorgrids=true,
%yminorgrids=true,
enlarge x limits=false,
enlarge y limits=false,
]
\addplot [color=cdfPlot1, dashed] table[x=X,y=Y,col sep=comma]{../data/1AC8260IntPixel2.csv}; \addlegendentry{AC 8260 int Pixel 2}
\addplot [color=cdfPlot2, solid ] table[x=X,y=Y,col sep=comma]{../data/2AC8260IntPixel3.csv}; \addlegendentry{AC 8260 int Pixel 3}
\addplot [color=cdfPlot3, dashed] table[x=X,y=Y,col sep=comma]{../data/3AC82602dBiPixel2.csv}; \addlegendentry{AC 8260 2dBi Pixel 2}
\addplot [color=cdfPlot4, solid ] table[x=X,y=Y,col sep=comma]{../data/4AC82602dBiPixel3.csv}; \addlegendentry{AC 8260 2dBi Pixel 3}
\addplot [color=cdfPlot5, dashed] table[x=X,y=Y,col sep=comma]{../data/5AC9462IntPixel2.csv}; \addlegendentry{AC 9462 int Pixel 2}
\addplot [color=cdfPlot6, solid ] table[x=X,y=Y,col sep=comma]{../data/6AC9462IntPixel3.csv}; \addlegendentry{AC 9462 int Pixel 3}
\addplot [color=cdfPlot7, dashed] table[x=X,y=Y,col sep=comma]{../data/7AC94622dBiPixel2.csv}; \addlegendentry{AC 9462 2dBi Pixel 2}
\addplot [color=cdfPlot8, solid ] table[x=X,y=Y,col sep=comma]{../data/8AC94622dBiPixel3.csv}; \addlegendentry{AC 9462 2dBi Pixel 3}
\end{axis}
\end{tikzpicture}
\end{document}