Info

この質問は閉じられています。 編集または回答するには再度開いてください。

delete some columns in A and the same columns in another matrix C

1 回表示 (過去 30 日間)
Qian cao
Qian cao 2016 年 2 月 10 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi all, I have matrix A and C as follows.How to do the function that deletes the columns whose last two values of matrix A are NaN and at the same time delete the same columns in C ? Results expected: a is the new matrix after we delete the columns from A as required. c is the new matrix after we delete the columns from C, with deleted columns indexed as those from A...
a = A(:, ~isnan(a(end-1,:)) | ~isnan(a(end,:)))
helps to get the following results. But I don't know how to get the index of the deleted columns from A so that I can work on C.Thanks.
A =
1 NaN 1 1
1 1 1 1
NaN NaN NaN 1
NaN NaN 1 NaN
a =
1 1
1 1
NaN 1
1 NaN

回答 (1 件)

dpb
dpb 2016 年 2 月 10 日
>> idx=all(isnan(A(end-1:end,:)))
idx =
1 1 0 0
>>

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by