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.