I have two data files (xxxx.txt and yyyy.txt), each only containing one column of x and y data respectively. Now I want to plot these two data together in a simple 2D diagram. Has anybody an idea how this is possible?
Until now I always had my x and y data in one file together (two columns, first x, second y). So there was no problem and I plotted my data like:
\begin{tikzpicture}
\begin{axis}
\addplot table {datatable.txt};
\end{axis}
\end{tikzpicture}
Does anybody have a helpful idea or solution?
