필터 지우기
필터 지우기

Matching Two Numeric Vectors

조회 수: 10 (최근 30일)
Patrick Rungrugeecharoen
Patrick Rungrugeecharoen 2019년 6월 8일
댓글: Star Strider 2019년 6월 8일
I have for instance a vector called A:
And another vector called B:
And another vector called C:
I'd like another vector D which is:
  • same length as vector B and C; and
  • will show a 1 if:
  • there is a match between vector A and vector B (else a 0); and
  • the corresponding matched value in vector C is less than or equal to 30.
For instance:
B(1) = 149.1408, A(1) = 149.1408, C(1) = 5 <= 30 so D(1) = 1 etc etc.
Would also like a vector E (size of A) counting occurrences from vector D.

답변 (1개)

Star Strider
Star Strider 2019년 6월 8일
The ismembertol (link) function is likely appropriate. (Another option is the ismember (link) function, althoughit is likely not appropriate here.)
  댓글 수: 6
Patrick Rungrugeecharoen
Patrick Rungrugeecharoen 2019년 6월 8일
Yes, hence the little pickle I'm in. Not too sure how to resolve this issue. I figured two for loops would work but it stops at the shorter of the two.
Star Strider
Star Strider 2019년 6월 8일
You actually don’t need any loops. You can do everything with the logical vectors.
You have to choose how to deal with the vectors not having the same numbers of elements. I can’t resolve that.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by