|
From: Mario R. <bio...@te...> - 2014-08-12 10:10:13
|
El 12/08/14 a las #4, Mario Rodriguez escribió: > El 11/08/14 a las #4, Martin Bock escribió: >> Dear all, >> >> >> I was wondering whether it is possible to have several plot windows >> originating from a single wxmaxima instance ... >> >> If so, how would I control which plot goes to which plotting window? > > This feature is not implemented in Maxima. > Sorry, I have to correct myself. You can open multiple graphic windows: /* Parabola in window #1 */ draw2d(terminal=[wxt,1],explicit(x^2,x,-1,1)); /* Parabola in window #2 */ draw2d(terminal=[wxt,2],explicit(x^2,x,-1,1)); /* Paraboloid in window #1 */ draw3d(terminal=[wxt,1],explicit(x^2+y^2,x,-1,1,y,-1,1)); For some more information: ? terminal Please, excuse my bad memory :-/ -- Mario |