row elimination problem.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anurag Gupta
le 19 Oct 2020
Modifié(e) : madhan ravi
le 19 Oct 2020
Hey
I have a matrix A of 34x2 double.
I want to eliminate the rows wherein the value of both the columns is 0.
0 commentaires
Réponse acceptée
madhan ravi
le 19 Oct 2020
A(all(A == 0, 2), :) = [ ]
3 commentaires
madhan ravi
le 19 Oct 2020
Modifié(e) : madhan ravi
le 19 Oct 2020
What?
>> A = [1,2; 0,0]
A(all(A == 0, 2), :) = [ ]
A =
1 2
0 0
A =
1 2
>>
Plus de réponses (1)
Asad (Mehrzad) Khoddam
le 19 Oct 2020
A(all(A(:,1:2)==0,2),:)=[];
2 commentaires
Asad (Mehrzad) Khoddam
le 19 Oct 2020
I didn't refresh the web page and the time I submitted the answer, there was no anwser to this question.
Voir également
Catégories
En savoir plus sur Simulink Functions dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!