Percentage of a value in a table rows matlab

조회 수: 6 (최근 30일)
Jonas Damsbo
Jonas Damsbo 2018년 11월 28일
답변: Guillaume 2018년 11월 28일
Hi
I want to find a certain value in each row in a table. An example:
[3 5 4 6 2 7 5 11 12 2; 1 4 3 6 7 5 3 7 12 10 15; 6 8 7 9 4 12 12 6 7 9]
So if I looking for the percentage of the value 12 I want to get the output:
[10; 10; 20]
Any way to do that?

채택된 답변

Guillaume
Guillaume 2018년 11월 28일
A = [3 5 4 6 2 7 5 11 12 2; 1 4 3 6 7 5 3 7 12 10; 6 8 7 9 4 12 12 6 7 9]
sum(A == 12, 2) / size(A, 2) * 100

추가 답변 (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