help-octave
[Top][All Lists]
Advanced

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

Re: [OctDev] Suppresing figure creation


From: Daniel J Sebald
Subject: Re: [OctDev] Suppresing figure creation
Date: Sat, 24 Mar 2012 09:38:58 -0500
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.24) Gecko/20111108 Fedora/3.1.16-1.fc14 Thunderbird/3.1.16

On 03/24/2012 09:04 AM, Ben Abbott wrote:

You need to pass the figure handle. Otherwise each call will create a new 
figure. The first will be hidden and the second visible.

The commands below should do what you want.

        figure (gcf (), 'visible', 'off');
        plot ([1:50]);
        figure (gcf (), 'visible', 'on');

Ben

Oh yeah, wasn't thinking.  Alternate visible, not visible.

Thanks,

Dan


reply via email to

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