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?
feedback
|
|
You can create a figure, but turn of visibility. Then plot and save as usual. something like
That might be of some help... | |||
|
feedback
|