I need to create an ocatve script which will generate a 2D-plot and then directly export it as image without actually plotting it.

Hypothetical Example:

x=1:10;
exportDirectly(x,'myImage.jpg');

Is this possible?

link|improve this question

67% accept rate
3  
I think this question can help. – Woltan Dec 5 '11 at 12:20
This answer has a few related techniques: stackoverflow.com/questions/7721255/… – reve_etrange Dec 5 '11 at 12:29
I found it: octave:2> f=figure("visible","off"); octave:3> plot([10,1,20,5,24]); octave:4> print("MyPNG.png", "-dpng"); The credit goes to Woltan for pointing out a useful answer! Thanks a million! – Pantelis Sopasakis Dec 5 '11 at 12:43
feedback

1 Answer

You can create a figure, but turn of visibility. Then plot and save as usual.

something like

fh = figure()
fh.set('Visible','Off')
%Some Plotting here
print(fh)

That might be of some help...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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