I want to save figure plot by MathScript Node, the function I used was "saveas". I could achieve my attention in matlab using this function. Where was the problem?
If this function is unusable in labview, how can I save the figure ploted using MathScript?
The following is the code I used in the MathScript Node:
******************************
x=1:0.1:10;
y=x.^2;
h=plot(x,y);
saveas(h,'G:\test2.jpg')
******************************
Thanks for any reply!
YangAfreet