how to display all non NaN values in a matrix

349 visualizaciones (últimos 30 días)
Nancy
Nancy el 15 de Feb. de 2012
Hi,
I have an array that looks like
A= [NaN 1 3 NaN NaN 5 NaN NaN 6];
what function should I run to make it look like this
A=[1 3 5 6];
Thanks Nancy

Respuestas (1)

G A
G A el 15 de Feb. de 2012
A=(A(~isnan(A)));

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by