how can i remove efficiently nan values from columns without deleting the column itself ?
1 回表示 (過去 30 日間)
古いコメントを表示
for ex :
A = 1 2 3
nan 4 nan
nan nan 5
4 5 6
required output
A = 1 2 3
4 4 5
5 6
1 件のコメント
James Tursa
2016 年 10 月 21 日
編集済み: James Tursa
2016 年 10 月 21 日
Your posted matrix result is not rectangular. You can't have this in a numeric matrix. Is this really what you want for an output or is this a typo? I.e., do you really want the resulting columns to potentially have different numbers of elements? (In which case maybe a cell array would be what you want).
回答 (1 件)
Andrei Bobrov
2016 年 10 月 21 日
i0 = ~isnan(A);
ii = sort(i0,'descend');
out = nan(size(A));
out(ii)=A(i0);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!