Info

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

How to delete the columns of a cell array if the last elements of the columns are zero

1 回表示 (過去 30 日間)
H R
H R 2019 年 3 月 2 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hi All,
I have a large cell arry PP with three rows and lots of columns as follows:
'A.txt' 'A2.bmp' 'A5.jpg'
1.1 1.3 1.4
1 1 0
How to delete the columns whose last elements are zero. After deleting the columns PP should look like this
'A.txt' 'A2.bmp'
1.1 1.3
1 1
Thanks.

回答 (1 件)

Luna
Luna 2019 年 3 月 2 日
Hi,
You can use this:
myArray = {'A','B','C','D'; 2 2 4 0;1 1 5 2; 1 1 6 0; 1 1 0 1};
newArray = myArray(:,~([myArray{end,:}] == 0))

Community Treasure Hunt

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

Start Hunting!

Translated by