Delete zero values in works pace variable

1 visualización (últimos 30 días)
missC
missC el 23 de Jul. de 2014
Comentada: missC el 23 de Jul. de 2014
Hi, How to delete zero values in the workspace variable and save the updated value (without zero) into another variable?
Great Thanks

Respuesta aceptada

Julia
Julia el 23 de Jul. de 2014
a=[1 2 3 0 4 5 0 6 7]
a =
1 2 3 0 4 5 0 6 7
>> a=a(a>0)
a =
1 2 3 4 5 6 7

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by