选择要在矩阵中显示的箱线图(列)

时间:2015-07-17 22:28:43

标签: matlab matrix matlab-figure

我读了boxplot documentation

但我不明白如何在我的矩阵中显示一些列(不只是一些列)。

我试过了:

%data is a matrix with 5 columns
%I want to display the second and third column only
boxplot(data,{2,3})

我知道这是一个简单的问题,但我在google或matlab文档中找不到任何内容。

1 个答案:

答案 0 :(得分:1)

要仅显示几列,只需在矩阵中使用索引即可。例如,仅显示列23

boxplot(data(:,[2 3]))