Is it possible to check logic on more than two things at the same time?
6 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Nicolas B.
on 11 Dec 2019
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 Comment
Walter Roberson
on 11 Dec 2019
if strcmp(excolortext,'RED') && all(excolor==[1 0 0])
See Also
Categories
Find more on Debugging and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!