help-octave
[Top][All Lists]
Advanced

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

Re: executing plot in background


From: Jordi Gutiérrez Hermoso
Subject: Re: executing plot in background
Date: Thu, 28 Oct 2010 12:11:56 -0500

2010/10/28 Begoña Fuentes <address@hidden>:
> So is there any possibility of "telling" octave not to show me the plots
> while they are being drawn to a file?

Set the figure's visibility to off:

    f = gcf()
    set(f,"visible","off")

    #plotting continues on its merry way below
    plot(...)

HTH,
- Jordi G. H.



reply via email to

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