plotting from data file



On Mon, 2010-03-29 at 22:27 +0400, Hiisi wrote:
> Dear list! Is there a way to plot data from file on hard disc in
> maxima? I mean something similar to gnuplot construction:
> plot "mydata.dat" using 1:2 title 'Column'

m: read_matrix("mydata.dat")$
plot2d([discrete, transpose(m)[1],
transpose(m)[2]],[style,points],[point_type,plus],[color,red],[legend,"Column"]);

Regards,
Jaime