On July 29, 2013, Jaime Villate wrote:
-------------------------
> The command
> plot2d( [discrete, [ [0,0], [1,2], [2,4] ] ] );
> creates two windows: one with the plot, and another one with the gnuplot
> interface (the supression of that second Window is a separate bug that I
> have just discussed in the "Window prts for Maxima" thread).
>
> Could you please try again the plot2d command in Maxima or Xmaxima and
> before using any other plot commands get the file maxout.gnuplot from
> your temporary directory (type maxima_tempdir; to find out the name of
> that directory) and e-mail it to me so I can track the bug?
-----------------------------------------
Using Windows XP, your plot command did bring up two
windows, the gnuplot interface window and the desired plot2d
window (hidden behind the gnuplot window). Thanks for
the information.
The resulting maxout.gnuplot file is:
-----------------------------
set term windows
set xlabel "x"
set ylabel "y"
set zeroaxis
set datafile missing "NaN"
plot '-' notitle with lines lt 3
0. 0.
1. 2.
2. 4.
-------------------------
Ted Woollett