When I try to save boxplot using 'saveas' as follows

X = randn(10, 10);
H = boxplot(X);
saveas(H, 'x.fig');

I receive the error

??? Error using ==> saveas at 72
Simulink object array must be a vector.

This error shows up because H is a matrix of handles to the lines in the box plot, but saveas requires H to be a single handle. Can somebody tell me how to save boxplot using command? Thanks.

link|improve this question

29% accept rate
3  
Welcome to Stack Overflow. It is considered good etiquette around here to accept answers that solved your problem, or made it significantly easier. Your accept rate is very low; you can fix that by going back and accepting answers to previous questions. – eykanal Oct 5 '11 at 3:23
feedback

1 Answer

up vote 3 down vote accepted

SAVEAS requires a handle to a figure as its first input. BOXPLOT, like most other plotting functions, return the handles of the plotted graphical objects, but not the figure handle.

Thus, you should write saveas(gcf,'x.fig'), which uses GCF to query the handle of the current figure, which is the figure into which the boxplot has been plotted.

link|improve this answer
Thanks, it works great. – sinoTrinity Oct 5 '11 at 21:23
feedback

Your Answer

 
or
required, but never shown

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