The problem with octave(matlab). In the program I have loop where I plot data. In the end of each loop I save plots to disc. During this process octave draw each plot. It slows down the process. I need only plots to be saved on disc. If I could not display them,but just save, it would considerably accelerate the process. Is there way to draw plot to handler without displaying it? to draw I use scatter function.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

As answered in this question, I would do:

f = figure('visible','off')
link|improve this answer
If the question is exact duplicate it's better to close it with the link to original question, or add the link in comments if you don't have enough points. – yuk Jan 4 at 15:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.