62 lines
1.8 KiB
TeX
62 lines
1.8 KiB
TeX
\begin{tikzpicture}
|
|
\begin{axis}[
|
|
xmode=log,
|
|
ymode=log,
|
|
xlabel={Retention Time [\unit{\milli\second}]},
|
|
ylabel={Retention Error Rate},
|
|
xmin=100, xmax=100000,
|
|
ymin=1e-10, ymax=1,
|
|
legend pos=north west,
|
|
legend style={font=\footnotesize, draw=none, fill=none},
|
|
width=1.0\linewidth,
|
|
height=5.0cm,
|
|
]
|
|
|
|
% Micron
|
|
\addplot[smooth, very thick, color=blue]
|
|
coordinates {
|
|
(64, 0)
|
|
(128, 0)
|
|
(256, 0)
|
|
(512, 0)
|
|
(1024, 7.09901E-08)
|
|
(2048, 1.04063E-05)
|
|
(4096, 0.000465134)
|
|
(8192, 0.008722029)
|
|
(16384, 0.029783939)
|
|
(32768, 0.064471348)
|
|
(65536, 0.102330153)
|
|
};
|
|
% Samsung
|
|
\addplot[smooth, very thick, color=green]
|
|
coordinates {
|
|
(64, 0)
|
|
(128, 0)
|
|
(256, 0)
|
|
(512, 0)
|
|
(1024, 3.62517E-08)
|
|
(2048, 3.02603E-06)
|
|
(4096, 8.20644E-05)
|
|
(8192, 0.000688446)
|
|
(16384, 0.003470714)
|
|
(32768, 0.009178362)
|
|
(65536, 0.018137646)
|
|
};
|
|
% Hynix
|
|
\addplot[smooth, very thick, color=orange]
|
|
coordinates {
|
|
(64, 0)
|
|
(128, 0)
|
|
(256, 0)
|
|
(512, 2.56114E-10)
|
|
(1024, 3.02272E-07)
|
|
(2048, 4.2077E-05)
|
|
(4096, 0.000996151)
|
|
(8192, 0.005669198)
|
|
(16384, 0.016854079)
|
|
(32768, 0.030819036)
|
|
(65536, 0.047067711)
|
|
};
|
|
|
|
\end{axis}
|
|
\end{tikzpicture} |