How to simplify
while or (mod(i,2) == 0, mod(i,3) == 0, mod(i,5) == 0, mod(i,7) == 0, mod(i,11) == 0)
Its like (mod(i, 2 or 3 or 5 or 7 or 11 )) == 0

 采纳的回答

Matt J
Matt J 2022-10-13
编辑:Matt J 2022-10-13
i=4;
any(mod(i,[2,3,7,11])==0)
ans = logical
1

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by