Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Comparing any of the matrix input
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I have matrix 'classes
classes =
1
2
What i need is, if classes matrix include x it should say "Matrix 'classes' include x value" ,else "Matrix 'classes' do not include x value".
The challanging think is comparing x with any of the classes members without using for or while loops.
댓글 수: 0
답변 (1개)
James Tursa
2019년 12월 18일
Hints: What does this result give you:
classes == x
Then look at this:
doc any
댓글 수: 3
James Tursa
2019년 12월 18일
Type it into the command line and see what happens ...
You might also try:
doc ismember
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!