Indexing a matrix in matlab according to conditions set on other matrices

2 ビュー (過去 30 日間)
Nikit Parakh
Nikit Parakh 2020 年 6 月 21 日
コメント済み: Nikit Parakh 2020 年 6 月 21 日
I am trying to index my matrix based on two conditions, I'll explain.
Let's say I have two matrices:
a = [7 3 4; 5 6 7; 4 8 0];
b = [1 9 8; 2 4 6; 6 1 6];
And a third matrix to index:
c = [1 2 3; 4 5 6; 7 8 9];
My aim is to index c in a way that I get a 3x3 matrix in which only the values of c are copied over for whose indexes the following conditions are met and the rest are zeros.
a <= 5, b >= 6
Resulting matrix:
result = [0 2 3; 0 0 0; 7 0 9]
I hope I was able to explain my problem.

採用された回答

Tommy
Tommy 2020 年 6 月 21 日
Here's one way:
result = (a <= 5 & b >= 6) .* c;

その他の回答 (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