Removing NaN values in Structure

15 visualizaciones (últimos 30 días)
Diego Fonseca
Diego Fonseca el 11 de Jun. de 2019
Comentada: Diego Fonseca el 11 de Jun. de 2019
Hello!
I have a struct called "modelo" that contains (among other variables) a numeric variable called "Val", which is 41714x81X29. There are random NaN's scattered throughout the data in this struct and I would like to remove them, creating a new variable without any NaN. I have tried writng:
modelo2 = modelo(~isnan([modelo.Val(:,:,:]));
but it says "Index exceeds matrix dimensions".
Does anyone could helpe me, please?

Respuesta aceptada

madhan ravi
madhan ravi el 11 de Jun. de 2019
modelo2 = modelo.Val(~isnan(modelo.Val));
  1 comentario
Diego Fonseca
Diego Fonseca el 11 de Jun. de 2019
Thanks a lot, Madhan Ravi! It worked fine!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrices and Arrays en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by