how to display all non NaN values in a matrix

349 visualizzazioni (ultimi 30 giorni)
Nancy
Nancy il 15 Feb 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

Risposte (1)

G A
G A il 15 Feb 2012
A=(A(~isnan(A)));

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by