Files
drammeasure-paper/plots/micron_30.tex
2025-03-24 20:58:27 +00:00

100 lines
2.6 KiB
TeX

\begin{tikzpicture}
\begin{axis}[
xmode=log,
ymode=log,
xlabel={Retention Time [\unit{\milli\second}]},
ylabel={Number of Errors},
xmin=100, xmax=100000,
ymin=1, ymax=10000000000,
legend pos=north west,
legend style={font=\footnotesize, draw=none, fill=none},
width=1.0\linewidth,
height=5.0cm,
]
% 0x0
\addplot[smooth, very thick]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 19)
(32768, 6158)
(65536, 496335)
};
% 0x5
\addplot[smooth, very thick, color=blue, dashed]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 49)
(32768, 8179)
(65536, 613303)
};
% 0xa
\addplot[smooth, very thick, color=orange, dashed]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 40)
(32768, 8411)
(65536, 616918)
};
% 0xf
\addplot[smooth, very thick, color=green]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 30)
(32768, 6507)
(65536, 532777)
};
% rnd
\addplot[smooth, very thick, color=red]
coordinates {
(64, 0)
(128, 0)
(256, 0)
(512, 0)
(1024, 0)
(2048, 0)
(4096, 0)
(8192, 0)
(16384, 58)
(32768, 9458)
(65536, 642932)
};
\legend{
\texttt{0x00},
\texttt{0x55},
\texttt{0xaa},
\texttt{0xff},
\texttt{rand}
}
\end{axis}
\end{tikzpicture}