Could anyone help me to display the non zero numbers with respect to each column
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
jaah navi
le 18 Juin 2019
Réponse apportée : Walter Roberson
le 18 Juin 2019
code:
C =[ 0 254.1128 0 ;
233.3050 0 0 ;
0 0 79.3894]
A=find(C~=0)
when i run the code it gives the following result
A = 2
4
9
It gives the place of the non zero numbers
Coud anyone help me how to get the place of non zero numbers with respect to each column in the following manner
A= 2 1 3
Could anyone please help me on this
0 commentaires
Réponse acceptée
Walter Roberson
le 18 Juin 2019
[A,~] = find(C); %returns column vector
A = A.'; %make it into a row vector
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!