Azzera filtri
Azzera filtri

While all elements are not equal to NaN

66 visualizzazioni (ultimi 30 giorni)
I have an array and I turn one element to NaN in each iteration until all elements are NaN, like:
While (all elements in array are not NaN)
do aomething
End
How can I do this?

Risposta accettata

Jos (10584)
Jos (10584) il 1 Mar 2018
not (~), all, and isnan are your friends. If A is your array,
while ~all(isnan(A(:)))
...
end
  2 Commenti
evangeline
evangeline il 2 Mar 2018
How can I check if I have a cell array?
Stephen23
Stephen23 il 2 Mar 2018
Modificato: Stephen23 il 2 Mar 2018
@Evangeline: iscell, whos, or look at the description in the workspace. How is this related to your question?

Accedi per commentare.

Più risposte (1)

evangeline
evangeline il 2 Mar 2018
I mean how can I check if all array elements are nan, if my array is an cell array.

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