Matlab求重复数字的个数tabulate
生活随笔
收集整理的這篇文章主要介紹了
Matlab求重复数字的个数tabulate
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
求重復數字的個數使用tabulate
TABLE = tabulate(x)
TABLE = tabulate(x) creates a frequency table of data in vector x. Information in TABLE is arranged as follows:
1st column — The unique values of x
2nd column — The number of instances of each value
3rd column — The percentage of each value
If x is a numeric array, TABLE is a numeric matrix. If the elements of x are nonnegative integers, TABLE includes 0 counts for integers between 1 and max(x) that do not appear in x.
If x is a categorical variable, character array, or cell array of strings, TABLE is a cell array.
tabulate(x) with no output arguments displays the table in the command window.
Examples
tabulate([1 2 4 4 3 4])
? Value ?Count ?Percent
? 1 ? ? ?1 ? ? ?16.67%
? 2 ? ? ?1 ? ? ?16.67%
? 3 ? ? ?1 ? ? ?16.67%
? 4 ? ? ?3 ? ? ?50.00%
TABLE = tabulate(x)
TABLE = tabulate(x) creates a frequency table of data in vector x. Information in TABLE is arranged as follows:
1st column — The unique values of x
2nd column — The number of instances of each value
3rd column — The percentage of each value
If x is a numeric array, TABLE is a numeric matrix. If the elements of x are nonnegative integers, TABLE includes 0 counts for integers between 1 and max(x) that do not appear in x.
If x is a categorical variable, character array, or cell array of strings, TABLE is a cell array.
tabulate(x) with no output arguments displays the table in the command window.
Examples
tabulate([1 2 4 4 3 4])
? Value ?Count ?Percent
? 1 ? ? ?1 ? ? ?16.67%
? 2 ? ? ?1 ? ? ?16.67%
? 3 ? ? ?1 ? ? ?16.67%
? 4 ? ? ?3 ? ? ?50.00%
總結
以上是生活随笔為你收集整理的Matlab求重复数字的个数tabulate的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Matlab求矩阵大小
- 下一篇: Matlab去掉矩阵中的全0行或列