Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Loop "if arg in ..."

7 Ansichten (letzte 30 Tage)
Lucas S
Lucas S am 5 Apr. 2019
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
Hello,
I come from Python and i would like to know if there is a
if a in b : ...
end
loop in matlab.
Thanks !

Antworten (1)

Jonathan A
Jonathan A am 12 Apr. 2019
Hi Lucas,
Not sure what you are referring to when you say that the "if" statement is a loop. But, if my assumption is correct that you are trying to check whether or not a value or an object is present in a list, you could have multiple options depending on the data in your list (matrix format, cell array format, uniform element class, ...), see code below:
% Case 1: b is a matrix (as strings can be considered as character vectors in Matlab,
% this works also for b='iop' and a='p')
b = [1,2,3];
a = 2;
if any(b==a)
disp('Yes');
else
disp('No');
end
% Case 2: b is a cell array of character vectors
b = {'q','r','s'};
a = 's';
if any(ismember(b,a))
disp('Yes');
else
disp('No');
end
% Case 3: b is a cell array of anything
b = {'q',1,[1,2]};
a = [1,2];
if any(cellfun(@(x) isequal(a,x),b))
disp('Yes');
else
disp('No');
end
I hope this helps.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by