Hi,,I am trying to calculate the weight of a matrix.how can i do that> I am explaining below
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
nafila aytija
il 31 Mag 2016
Commentato: the cyclist
il 2 Giu 2016
Suppose I have a matrix...
A = [1 0 0 0 ;
1 1 0 0 ;
1 1 1 0 ;
1 1 1 1]
how do I calculate that how many coulmns have only one ONE ? TIA
0 Commenti
Risposta accettata
the cyclist
il 31 Mag 2016
numberOfColumnsThatHaveExactlyOneOne = sum(sum(A==1)==1);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Decomposition in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!