Info

此问题已关闭。 请重新打开它进行编辑或回答。

Loop "if arg in ..."

1 次查看(过去 30 天)
Lucas S
Lucas S 2019-4-5
关闭: MATLAB Answer Bot 2021-8-20
Hello,
I come from Python and i would like to know if there is a
if a in b : ...
end
loop in matlab.
Thanks !

回答(1 个)

Jonathan A
Jonathan A 2019-4-12
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.

此问题已关闭。

标签

Community Treasure Hunt

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

Start Hunting!

Translated by