Using a logic mask for selective data operations

54 ビュー (過去 30 日間)
Wah On Ho
Wah On Ho 2019 年 12 月 18 日
コメント済み: Star Strider 2019 年 12 月 18 日
Hi All. I'm trying to use a logic mask to select data in a numerical matrix, rather than simply looping through each cell, and perform some mathematical operation, and then the inverse maks to perform a different operation. For example...
data = [-2, -4, 1, 3, 4, -6; -0.5, 2.4, 5, 9.8, 3, -11.2; 4, 3, -2, -1.5, 7, 10; 3, 4, -2.4, -3.3, -8, 10];
logicmaskneg = data < 0;
logicmaskpos = data > 0;
dataneg = data(logicmaskneg);
datapos = data(logicmaskpos);
So logicmaskneg and logicmaskpos keep the same matrix structure as data. But dataneg and datapos collapses the data matrix into one column. How do I apply the logic masks such that I can keep dataneg and datapos in the matrix organisation as data so I can continue to perform further calculations preserving the original column and row organisation?
Maybe I'm going about this the wrong way. My aim is to perform one operation on only the negative numbers and a different calculation on the positive numbers while preserving the data layout.
Any help and advice is much appreciated.
Thanks.

採用された回答

Star Strider
Star Strider 2019 年 12 月 18 日
The ‘logicmaskneg’ and ‘logicmaskpos’ matrices become numeric matrices when used in any calculation.
See if this does whatt you want:
data = [-2, -4, 1, 3, 4, -6; -0.5, 2.4, 5, 9.8, 3, -11.2; 4, 3, -2, -1.5, 7, 10; 3, 4, -2.4, -3.3, -8, 10];
logicmaskneg = data < 0;
logicmaskpos = data > 0;
dataneg = data(logicmaskneg);
datapos = data(logicmaskpos);
producing:
dataneg =
-2 -4 0 0 0 -6
-0.5 0 0 0 0 -11.2
0 0 -2 -1.5 0 0
0 0 -2.4 -3.3 -8 0
datapos =
0 0 1 3 4 0
0 2.4 5 9.8 3 0
4 3 0 0 7 10
3 4 0 0 0 10
  8 件のコメント
Wah On Ho
Wah On Ho 2019 年 12 月 18 日
That's exactly what I'm after! I agree, Matlab does make these calculations straightforward once you know. Thank you so much.
Star Strider
Star Strider 2019 年 12 月 18 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by