Length of elements in array that are not NaN
47 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Benjamin
am 12 Nov. 2018
Kommentiert: Benjamin
am 12 Nov. 2018
I am trying to get the length of an array, and exclude NaN values. At the end of the column there are some NaNs. How can I ignore those?
I tried:
length(thisS(:,11))
But this includes the Nans
When I try:
length(thisS(~isnan((:,11)))
I get:
length(thisS(~isnan((:,11)))
↑
Error: Invalid use of operator.
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu NaNs finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!