match a categorical array in a loop

3 ビュー (過去 30 日間)
Danielle Leblance
Danielle Leblance 2018 年 3 月 3 日
コメント済み: Walter Roberson 2018 年 3 月 8 日
Hi,
isequal(AgeState,StateState(i));
is returning a 0 although I can see visually that AgeState which is a categorical array matches StateState(i) at least 13 times. How can I find which rows in Agetate match StateState(i)?

採用された回答

Walter Roberson
Walter Roberson 2018 年 3 月 3 日
any(ismember(AgeState, StateState(i)), 2)
or
all(ismember(AgeState, StateState(i)), 2)
depending on whether "which rows in Agetate match StateState(i)" is intended to refer to there being at least one element of the row that matches, or if it is intended to refer to all elements in the row matching.
  2 件のコメント
Peter Perkins
Peter Perkins 2018 年 3 月 8 日
Just to clarify, isequal is not the same thing as ==. isequal asks, "are the arrays the same?", and if StatState(i) is a scalar, then clearly the arrays are not the same.
If StateState(i) is a scalar, I think in addition to Walter's suggestion,
any(AgeState == StateState(i)), 2)
will also work.
Walter Roberson
Walter Roberson 2018 年 3 月 8 日
Good point about isequal, I missed that before.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by