欠損データの行の削除方法
48 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
lattice
2018 年 7 月 11 日
isnan で 1 列目の NaN のある行を選んで,その行の全列を空にします.
元のデータを X とすると,
id = isnan(X(:,1));
X(id, :) = [];
0 件のコメント
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!