Page MenuHomec4science

nondriven.tex
No OneTemporary

File Metadata

Created
Sat, Jan 18, 05:30

nondriven.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 10cm,
xlabel={temps [\si{\second}]},
xmin = 0, xmax = 1.5,
legend style =
{
at = {(0.05, 0.95)},
anchor = north west
},
%cycle list name = color,
grid style = dashed,
ymajorgrids = true
}
\begin{logyaxis}
[
ylabel={$d_{var}$ [\si{\centi\meter}]},
ymin = 1, ymax = 1e5
]
\pgfplotstableread{outs/peaks0.dat}\peakszero
\pgfplotstableread{outs/peaks1.dat}\peaksone
\pgfplotstableread{outs/peaks2.dat}\peakstwo
\addplot
[
color = red,
mark = x,
mark options = {
draw = red,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = t, y = U, x error = dt, y error = dU] {\peakszero};
\addlegendentry{$$} % TODO
\addplot
[
mark = none,
color = black,
domain = 0:1.5
] {2 * exp(x)}; % TODO
\addplot
[
color = blue,
mark = x,
mark options = {
draw = blue,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = t, y = U, x error = dt, y error = dU] {\peaksone};
\addlegendentry{$$} % TODO
\addplot
[
mark = none,
color = black,
domain = 0:1.2
] {2 *exp(x)}; % TODO
\addplot
[
color = brown,
mark = x,
mark options = {
draw = brown,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = t, y = U, x error = dt, y error = dU] {\peakstwo};
\addlegendentry{$$} % TODO
\addplot
[
mark = none,
color = black,
domain = 0:1.2
] {2 * exp(x); % TODO lambda
\end{logyaxis}
\end{tikzpicture}

Event Timeline