Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Find out how long after division will be an integer?
1 回表示 (過去 30 日間)
古いコメントを表示
Hello! Is it possible to know when the condition will be met, what has been divided and the result is an integer?
A=[1:100];
for i=1:30
Ax(i)=A(i)/2;
if Ax(i) not a fractional number
Ax(i)=Ax(i);
else
break
end
end
0 件のコメント
回答 (2 件)
KSSV
2020 年 7 月 28 日
if mod(x,1)==0 then x is an whole number/ integer.
この質問は閉じられています。
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!