how to display all non NaN values in a matrix

352 Ansichten (letzte 30 Tage)
Nancy
Nancy am 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

Antworten (1)

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by