x=rand(1,10); y=1:10; h=plot(x,y,'r',x,y,'g'); saveas(h, 'test','jpg');
I want to save the plot above but i get an error
??? Operands to the || and && operators must be convertible to logical scalar values.
Error in ==> saveas at 64
while ~isempty(h) && ~isfigure(h)
I know its because h has two values, I just dont know how to save both of these in the same image file.
No products are associated with this question.
The 'plot' is the line, what you want to save is the figure.
h=figure; x=rand(1,10); y=1:10; plot(x,y,'r',x,y,'g'); saveas(h, 'test','jpg');
0 Comments