Length of elements in array that are not NaN

55 views (last 30 days)
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.

Accepted Answer

Matt J
Matt J on 12 Nov 2018
Edited: Matt J on 12 Nov 2018
num_no_nans = sum( ~isnan(thisS(:,11)) )

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!