array and logicals; deleting columns

7 ビュー (過去 30 日間)
gmltn1212
gmltn1212 2020 年 6 月 22 日
回答済み: the cyclist 2020 年 6 月 22 日
Hi I am trying to delete a column of array based on a logical (true, false)
arr = [1 2 3; 4 5 6; 7 8 9];
if the logical is this,
logic = '0 1 0' %this is logical values
I am trying to delete the entire column when its true (logical 1). And the returned value should look like this:
new = [1 3; 4 6; 7 9]
Could you do this by using 'logic'? not arr(:,2)]=[]

採用された回答

the cyclist
the cyclist 2020 年 6 月 22 日
Here is one way.
arr = [1 2 3;
4 5 6;
7 8 9];
logic = [false true false];
new = arr(:,not(logic))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by