Is it possible to check logic on more than two things at the same time?
조회 수: 6 (최근 30일)
이전 댓글 표시
I'm programming a simple stroop task (very simple- I'm not very good at this). I've randomized the colors and the words to be presented and I have it set up so it will check to see if the color matches the word to save the reaction time as either congruent or incongruent.
I also want to record the correct and incorrect responses, but in order to do that, I'd need to check to see if the color matches the word AND the user's input. Is there a way to do that?
This is the code I have to check to see if the trials are congruent, but I'd also need to check to see if the user's input is "r".
if strcmp(excolortext,'RED')&excolor==[1 0 0]
excolor text is the word itself and excolor is the randomized color.
I'm sorry this is probably a pretty basic question. I'd appreciate any help you can give me.
댓글 수: 0
답변 (1개)
Nicolas B.
2019년 12월 11일
Oh, pay attention what you are using for symbols. Just a friendly reminder:
&& -> and condition, work only with scalars
& -> and operator. work with logical vectors/matrices...
In your case, you want to use the and condition && and if you compare vectors, you have 2 options:
% option 1: (not my favorite)
if all(myVec == [1 0 0])
end
% option 2:
if isequal(myVec, [1 0 0])
end
Than, you can easily add as many conditions as you want.
댓글 수: 1
Walter Roberson
2019년 12월 11일
if strcmp(excolortext,'RED') && all(excolor==[1 0 0])
참고 항목
카테고리
Help Center 및 File Exchange에서 Debugging and Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!