by Yrbgol <yrbgol@[EMAIL PROTECTED]
>
May 28, 2008 at 10:52 AM
On May 27, 11:40 pm, Juergen Wieferink <wiefer...@[EMAIL PROTECTED]
> wrote:
> 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
This is similar to what I want. However, I don't want it to be
interactive. With one command I want to be able to plot the numbers.
If you look at my example above that should give you an idea.
Thank you.
YRB