help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: plotting in windows


From: Andreas Weber
Subject: Re: plotting in windows
Date: Thu, 10 Jan 2013 18:26:39 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.11) Gecko/20121122 Icedove/10.0.11

Am 09.01.2013 20:48, schrieb goosst:
> Hello,
> 
> I installed the latest version of octave available for windows
> (Octave-3.6.2-mingw:
> http://sourceforge.net/projects/octave/files/Octave%20Windows%20binaries/Octave%203.6.2%20for%20Windows%20MinGW%20installer/
> ).
> 
> As I want to do some postprocessing with quite some data I did a small test
> to generate figures inside a loop.
> Octave-3.6.2-mingw
> for i=1:5
>       figure
>       plot(rand(10000,1))
>       print(['test',num2str(i),'.png'],'-dpng')
> end
> 
> ==> result: 
> * it takes a very long time and no .png files are generated
> * the generated figures are not visible and are 'in a state of crashing' (my
> best explanation)

Dear stijn,

please file a bug report on http://savannah.gnu.org/bugs/?group=octave
Please mention also the Windows Version used and 32/64bit.

I can confirm your problem using WindowsXP Pro 32bit with
Octave-3.6.2-mingw and the fltk toolkitas graphics backend.

Using gnuplot all works fine. Please add the output from

$ graphics_toolkit

And

$ plot(rand(10000,1))
$ print("test.png","-debug")

switch to gnuplot to check if this work:

$ graphics_toolkit gnuplot

And try it with gnuplot:
$ plot(rand(10000,1))
$ print test1.png

gswin32c has problem when using antialiasing on your testcase,
you could also disable antialiasing:

restart octave, then
$ plot(rand(10000,1))
$ print("test2.png","-debug","-GraphicsAlphaBits=1")

Regards, Andy


reply via email to

[Prev in Thread] Current Thread [Next in Thread]