Borrar filtros
Borrar filtros

Remove NaN and create one column

2 visualizaciones (últimos 30 días)
Damith
Damith el 3 de Jul. de 2014
Comentada: Damith el 4 de Jul. de 2014
Hi,
I have a matrix A (31 x 12) which has NaN values and need to remove all NaN values and make it a one column (:). How can I do it MATLAB?
  1 comentario
per isakson
per isakson el 4 de Jul. de 2014
Editada: per isakson el 4 de Jul. de 2014
Delete one of your two nearly identical questions!

Iniciar sesión para comentar.

Respuesta aceptada

per isakson
per isakson el 4 de Jul. de 2014
"I have this matrix A and has NaN values. I need
  1. to remove NaN values from all the columns and
  2. write the values into one column (:)."
Step one is not possible because it would result in columns with different length.
Switching the order of the steps will return a result
A = A(:);
A( isnan( A ) ) = [];
  1 comentario
Damith
Damith el 4 de Jul. de 2014
Thanks a lot. It worked. This is the result I wanted.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices 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!

Translated by