Length of elements in array that are not NaN
46 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Benjamin
el 12 de Nov. de 2018
Comentada: Benjamin
el 12 de Nov. de 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 comentarios
Respuesta aceptada
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!