You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
681 B
TeX
26 lines
681 B
TeX
\documentclass{article}
|
|
\usepackage{pgfplots}
|
|
\usepackage{filecontents}
|
|
|
|
|
|
\begin{document}
|
|
\begin{tikzpicture}
|
|
\begin{axis}
|
|
\addplot+ [mark options={scale = 0.7}, mark = o] table [x=x,y=y, col sep = comma,
|
|
only marks] {data_sin_d_t.csv};
|
|
\addplot [black] table [x=x, y=y, col sep=comma, mark=none, color = 'black'] {matlab_sin_d_01.csv};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\begin{tikzpicture}
|
|
\begin{axis}
|
|
\addplot table [x=x, y=y, col sep=comma, only marks] {data_sin_d_t.csv};
|
|
\addplot table [black, x=x, y=y, col sep=comma, mark=none, color = 'black'] {matlab_sin_d_01.csv};
|
|
\end{axis}
|
|
\end{tikzpicture}
|
|
\end{document}
|
|
|
|
%%% Local Variables:
|
|
%%% mode: latex
|
|
%%% TeX-master: t
|
|
%%% End:
|