How to filter out rows with NaNs from one variable and the same rows from another variable without NaNs.
Ältere Kommentare anzeigen
I have a numerical variable X [506x24706] and a numerical variable Y [506x1]. Variable Y includes some NaNs. How can I filter out rows with NaNs from Y and at the same time filter out the same corresponding rows from X and create a new Y and a new X?
Antworten (1)
Paolo
am 24 Jul. 2018
indx = isnan(Y);
Y(indx) = [];
X(indx,:) = [];
Kategorien
Mehr zu Frequency Transformations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!