Page 1 of 1

canceling irf plotting

PostPosted: Wed May 22, 2013 6:20 pm
by pfb
What is the command to cancel irf plotting? I don't quite need that but it crashes octave working.

Re: canceling irf plotting

PostPosted: Wed May 22, 2013 6:35 pm
by jpfeifer
irf=0

Re: canceling irf plotting

PostPosted: Wed May 22, 2013 7:18 pm
by pfb
Now no plots are displayed, great. But where are my irfs stored in octave's workspace? I can't find them now.

Re: canceling irf plotting

PostPosted: Wed May 22, 2013 8:37 pm
by jpfeifer
Sorry, irf=0 does not create them. Use nograph or nodisplay. From the manual:

nograph:
Do not create graphs (which implies that they are not saved to the disk nor displayed). If this option is not used, graphs will be saved to disk (to the format specified by graph_format option) and displayed to screen (unless nodisplay option
is used).

nodisplay:
Do not display the graphs, but still save them to disk (unless nograph is used).

Re: canceling irf plotting

PostPosted: Wed May 22, 2013 10:12 pm
by pfb
nograph is what I wanted definitely, thanks