Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Find out how long after division will be an integer?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
KSSV
el 28 de Jul. de 2020
if mod(x,1)==0 then x is an whole number/ integer.
2 comentarios
La pregunta está cerrada.
Ver también
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!