Question regarding a find function(search for data)

3 ビュー (過去 30 日間)
Gimpy
Gimpy 2013 年 5 月 26 日
Hi, I have the following matrix:
data=[10 1 2 3; 11 4 5 6; 12 7 8 9; 17 4 5 6]
I want to do a query with the following matirx:
built a matrix base on the element value 10 and 17
lookfor=[10;17]
And I'm looking for the following result(values associate with 10 and 17 in this case)
anwser=[10 1 2 3; 17 4 5 6]
I'm looking for a dynamic anwser, data matrix and lookfor matrix will vary and be much more bigger.
thank you in advance for your precious anwsers.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 26 日
編集済み: Azzi Abdelmalek 2013 年 5 月 26 日
out=[data(any(data==17,2),:);data(any(data==10,2),:)]
%or
out=data(any(ismember(data,lookfor),2),:)
  4 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 5 月 26 日
How did you find anwser=[10 1 22 33; 11 8 10 12]
the cyclist
the cyclist 2013 年 5 月 27 日
Looks like he wants to find rows that start with 10, and sum them into one row. Then find rows that start with 11, and sum them.

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

その他の回答 (1 件)

the cyclist
the cyclist 2013 年 5 月 26 日
編集済み: the cyclist 2013 年 5 月 26 日
rowIndex = ismember(data(:,1),lookfor);
answer = data(rowIndex,:);

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by