Percentage of a value in a table rows matlab

3 vues (au cours des 30 derniers jours)
Jonas Damsbo
Jonas Damsbo le 28 Nov 2018
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?

Réponse acceptée

Guillaume
Guillaume le 28 Nov 2018
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

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by