How can I remove zero values from the followning label matrix?.

2 visualizzazioni (ultimi 30 giorni)
How can I remove zero values form the following
?.

Risposta accettata

Hikaru
Hikaru il 22 Set 2014
If your matrix is A, then
A(A==0) = []
will remove the zeros. But it will change the matrix into a vector.
If you want to keep the matrix in the same shape, maybe
A(A==0) = NaN

Più risposte (0)

Categorie

Scopri di più su Matrices and Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by