Percentage of a value in a table rows matlab

6 次查看(过去 30 天)
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