How to find multiple numbers in a matrix

14 ビュー (過去 30 日間)
Kasmayanti Sakaria
Kasmayanti Sakaria 2018 年 4 月 2 日
Hi everyone,
Please show me how to find multiple numbers in a matrix. Lets say I have a matrix:
A = [1 2 3 3 5 6; 7 8 3 3 5 12; 13 14 3 3 17 5];
So I want to find number 3 in the matrix. I used this code:
for i=1:3;
for j=1:length(A);
if A (i,j) == 3;
b (i,j) = 1;
else
b (i,j) = 0;
end
end
end
Then I got:
b = [0 0 1 1 0 0; 0 0 1 1 0 0; 0 0 1 1 0 0]
But my problem is how if I want to find position of 2 numbers in a matrix, for example 3 and 5. I want the answer look like this:
b = [0 0 1 1 1 0; 0 0 1 1 1 0; 0 0 1 1 0 1]

採用された回答

Stephen23
Stephen23 2018 年 4 月 2 日
編集済み: Stephen23 2018 年 4 月 2 日
The most generalized solution is to use ismember:
>> A = [1,2,3,3,5,6;7,8,3,3,5,12;13,14,3,3,17,5];
>> b = ismember(A,[3,5])
This trivially adjusts to any size of A, or any number of values that you want to match.
  1 件のコメント
Kasmayanti Sakaria
Kasmayanti Sakaria 2018 年 4 月 2 日
Thank you. It works :)

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

その他の回答 (2 件)

Abhishek Ballaney
Abhishek Ballaney 2018 年 4 月 2 日
https://in.mathworks.com/help/matlab/ref/find.html
  1 件のコメント
Kasmayanti Sakaria
Kasmayanti Sakaria 2018 年 4 月 2 日
Thank you :)

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


David Fletcher
David Fletcher 2018 年 4 月 2 日
編集済み: David Fletcher 2018 年 4 月 2 日
A = [1 2 3 3 5 6; 7 8 3 3 5 12; 13 14 3 3 17 5];
b=A==3 | A==5
  1 件のコメント
Kasmayanti Sakaria
Kasmayanti Sakaria 2018 年 4 月 2 日
Thanks. This also works.

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

カテゴリ

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

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by