row elimination problem.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Anurag Gupta
el 19 de Oct. de 2020
Editada: madhan ravi
el 19 de Oct. de 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 comentarios
Respuesta aceptada
madhan ravi
el 19 de Oct. de 2020
A(all(A == 0, 2), :) = [ ]
3 comentarios
madhan ravi
el 19 de Oct. de 2020
Editada: madhan ravi
el 19 de Oct. de 2020
What?
>> A = [1,2; 0,0]
A(all(A == 0, 2), :) = [ ]
A =
1 2
0 0
A =
1 2
>>
Más respuestas (1)
Asad (Mehrzad) Khoddam
el 19 de Oct. de 2020
A(all(A(:,1:2)==0,2),:)=[];
2 comentarios
Asad (Mehrzad) Khoddam
el 19 de Oct. de 2020
I didn't refresh the web page and the time I submitted the answer, there was no anwser to this question.
Ver también
Categorías
Más información sobre Simulink Functions en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!