For loop with string comparison
1 view (last 30 days)
Show older comments
I am getting error with this code. Can someone help me with this ?
for i=1:100
if (S(i).Status=='Active' || S(i).type=='N')
disp(i)
else
continue;
end
end
0 Comments
Accepted Answer
Bruno Luong
on 20 Jul 2020
Change to
...
if strcmp(S(i).Status,'Active') || strcmp(S(i).type,'N')
...
end
More Answers (0)
See Also
Categories
Find more on Characters and Strings 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!