Column indexing with condition

8 ビュー (過去 30 日間)
Duc Anh Le
Duc Anh Le 2020 年 4 月 27 日
回答済み: per isakson 2020 年 4 月 28 日
I have two matrices
A = [1, 0, 0;
0, -2, 0;
0, 0, -3];
B =[1, 2, 3;
4, 5, 6;
7, 8, 9];
I need to find columns in A with negative values (in this example it's 2 and 3 columns) and change the values to opposite in the corresponding columns of B. Basically, I want
B = [1, -2, -3;
4, -5, -6;
7, -8, -9];
Is there a fast way to do this using indexing? I know how to do this with a for loop, but I believe that's not the best solution

採用された回答

per isakson
per isakson 2020 年 4 月 28 日
Try this
>> isn = any( A<0, 1 );
>> B(:,isn) = -B(:,isn)
B =
1 -2 -3
4 -5 -6
7 -8 -9
and read about Indexing with Logical Values (in the middle of the page)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

タグ

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by