一分鐘瞭解“Matlab統計數值頻率和個數tabulate”

一點點一滴滴發表於2017-07-19
TABLE = tabulate(x) creates a frequency table of data in vector x. Information in TABLE is arranged as follows:


第一列是各種不同取值。
第二列是各種不同取值對應的個數。
第三列是各種不同取值對應的比例。


例子:
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%

相關文章