Length of elements in array that are not NaN

65 vues (au cours des 30 derniers jours)
Benjamin
Benjamin le 12 Nov 2018
Commenté : Benjamin le 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.

Réponse acceptée

Matt J
Matt J le 12 Nov 2018
Modifié(e) : Matt J le 12 Nov 2018
num_no_nans = sum( ~isnan(thisS(:,11)) )

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by