by Juergen Wieferink <wieferink@[EMAIL PROTECTED]
>
May 28, 2008 at 08:40 AM
Yrbgol wrote:
> I am calling gnuplot from perl and I am trying to plot a simple graph.
> Say, I want to plot [1 2 3 5 2 4]. Is there a way to plot this set
> using simple plot command? I had to write it to a tem****ary file and
> use gnuplot's plot command.
>
> the following did not work:
>> plot [ 1 2 3 5 2 4 ]
>
>> plot 1 2 3 5 2 4
>
>> plot (1 2 3 5 2 4)
I really don't understand what you actually try to achieve.
You may want to try "help plot".
Maybe you are looking for
plot '-'
1
2
3
5
2
4
e
Juergen