matlab中对数据的分类汇总
发布网友
发布时间:2022-04-19 21:38
我来回答
共3个回答
热心网友
时间:2023-07-18 15:09
例子:
>> a=[2 0 0 0;2 0 0 0;1 1 0 0;2 3 1 0;2 3 1 0];
>> b=a(1,:)==2;%第一行中等于2
>> sum(b)
ans =
1
>> c=a(3,:)==1;%弟三行中等于1
>> sum(c)
ans =
2
>>
热心网友
时间:2023-07-18 15:10
tabulate(
姓名那一列
)
热心网友
时间:2023-07-18 15:10
用 tabulate 函数。
TABLE = tabulate(X) takes a vector X and returns a matrix, TABLE.
The first column of TABLE contains the unique values of X. The
second is the number of instances of each value. The last column
contains the percentage of each value.