但我不明白如何在我的矩阵中显示一些列(不只是一些列)。
我试过了:
%data is a matrix with 5 columns
%I want to display the second and third column only
boxplot(data,{2,3})
我知道这是一个简单的问题,但我在google或matlab文档中找不到任何内容。
答案 0 :(得分:1)
要仅显示几列,只需在矩阵中使用索引即可。例如,仅显示列2
和3
:
boxplot(data(:,[2 3]))