Borrar filtros
Borrar filtros

Finding non-zero 2-D array

2 visualizaciones (últimos 30 días)
Ajinkya Bankar
Ajinkya Bankar el 15 de Oct. de 2019
Comentada: Ajinkya Bankar el 15 de Oct. de 2019
If I have following type of 2-D array which can have entire row of zero's
1 3 7
3 6 9
0 0 0
2 3 8
I want following output array:
1 3 7
3 6 9
2 3 8
Can someone please help?

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 15 de Oct. de 2019
a=[1 3 7; 3 6 9; 0 0 0;2 3 8];
b=a(~all(a==0,2),:);

Más respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by