|
From: Hans-Bernhard B. <HBB...@t-...> - 2014-02-05 20:59:14
|
On 05.02.2014 21:30, Hamed Ahmadi wrote:
> I have a data file as matrix form.
As far as gnuplot's use of the term is concerned, that sentence directly
contradicts the following two:
> The values on the x axis are in
> the first row of this file. The y values corresponding to the x
> values are on the following rows.
A file in that format is not in matrix form as understood by gnuplot.
Your data file format is not really usable by gnuplot as-is. If at all
possible, you should transpose it, i.e. make columns out of rows and
vice versa. Then a simple
plot 'filename' using 1:3
will display what you want.
|