Matlab判断某个数是否属于某个集合
时间: 2023-05-24 14:06:02 浏览: 147
Matlab命令集合
可以使用 MatLab 中的 in 函数来判断某个数是否属于某个集合。
例如,假设我们有一个包含 1 到 10 的整数集合:
set = 1:10;
我们可以使用 in 函数来判断某个数是否在这个集合中,比如检查数字 5 是否属于该集合:
if in(5, set)
disp('5 is in the set');
else
disp('5 is not in the set');
end
输出结果为:
5 is in the set
类似地,我们也可以使用 not 函数来判断某个数是否不属于某个集合:
if not(in(15, set))
disp('15 is not in the set');
else
disp('15 is in the set');
end
输出结果为:
15 is not in the set
阅读全文