How to make several boxes with Octave?

I have 3 matrices that I would like to build on a box (two of them consist of 22 rows of 83 columns and the other 7 rows of 83 columns) inside Octave.

I tried:

boxplot ([red (:, 1), cyan (:, 1), magenta (:, 1)])

error: horizontal size mismatch error: rating item list element 1

But I keep getting the above error. I guess because I have one matrix with 7 rows instead of 22? If so, is there any possible way to get them both to draw them on the same box?

+3
source share
1 answer

[a,b,c], , . , .

boxplot ( help boxplot),

boxplot ({red(:,1),blue(:,1),purple(:,1)})
+1

All Articles