Re: How to close all figures at the same [message #56493] |
Thu, 25 October 2007 17:31  |
Nianming Zuo
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Short-cut! Matt, thank you!
On 10 25 , 10 08 , Matt <sav...@nsidc.org> wrote:
> On Oct 25, 1:17 am, Nianming Zuo <nianm...@gmail.com> wrote:
>
>> A routine produces many figures, and after I view these results,
>> I want to close all of them easily.
>
>> In Matlab(R), it can be done by "close all" (I remenber not clearly).
>> But what shell I do in IDL in command line ?
>
> I always use the simple:
>
> IDL> while 1 do wdelete
>
> Works for me.
>
> Matt
> --
> Matthew Savoie - Scientific Programmer
> National Snow and Ice Data Center
> (303) 735-0785 http://nsidc.org
|
|
|
|
Re: How to close all figures at the same [message #56523 is a reply to message #56520] |
Thu, 25 October 2007 03:20   |
Nianming Zuo
Messages: 13 Registered: August 2007
|
Junior Member |
|
|
Hi, Paolo,
Thank you so much! It's indeed a very useful function.
Best,
Nico
On 10 25 , 4 18 , pgri...@gmail.com wrote:
> Use: wdel,/all
>
> You can find wdel.pro at:
>
> http://sohowww.nascom.nasa.gov/solarsoft/gen/idl/display/wde l.pro
>
> Cheers,
> Paolo
>
>
>
> Nianming Zuo wrote:
>> A routine produces many figures, and after I view these results,
>> I want to close all of them easily.
>
>> In Matlab(R), it can be done by "close all" (I remenber not clearly).
>> But what shell I do in IDL in command line ?- -
>
> - -
|
|
|
|
Re: How to close all figures at the same [message #56569 is a reply to message #56524] |
Sat, 27 October 2007 15:53  |
jm
Messages: 32 Registered: April 2003
|
Member |
|
|
On Oct 26, 10:16 pm, Ed Hyer <ejh...@gmail.com> wrote:
>> IDL> while 1 do wdelete
>
> Tres elegant! And here I had been muddling along with:
>
> IDL> for i=0,99 do wdelete
Perhaps a smidgen more "elegant":
WHILE (!D.Window NE -1) DO WDELETE
-JM
|
|
|
|