Effacer les filtres
Effacer les filtres

Find and summarize values in matrix WITHOUT loop

2 vues (au cours des 30 derniers jours)
Sebastian Daneli
Sebastian Daneli le 11 Mar 2020
Let's say that I have a matrix M=[1 2;1 1], and I need to find all the 1:s in each culumn, and then summerize them in a vector as v=[2 1]. Is this possible without a loop?

Réponse acceptée

Ameer Hamza
Ameer Hamza le 11 Mar 2020
M=[1 2;1 1];
sum(M==1,1)

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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