Create a frequency table with the available number

조회 수: 5 (최근 30일)
fyza affandi
fyza affandi 2019년 2월 1일
답변: madhan ravi 2019년 2월 1일
I make a frequency table of an array using the below command
tabulate([1 2 4 4 3 4 7])
The result is as below
Value Count Percent
1 1 14.29%
2 1 14.29%
3 1 14.29%
4 3 42.86%
5 0 0.00%
6 0 0.00%
7 1 14.29%
How can I make a frequency table WITH ONLY available value. I just want this result
Value Count Percent
1 1 14.29%
2 1 14.29%
3 1 14.29%
4 3 42.86%
7 1 14.29%

채택된 답변

madhan ravi
madhan ravi 2019년 2월 1일
t=tabulate(...);
t(~all(t,2),:)=[]

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by