How can I write a program that indicates a number if it is integer or not?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
How can I write a program that indicates a number if it is integer or not?
0 comentarios
Respuestas (3)
James Tursa
el 15 de Mzo. de 2018
doc floor
doc ceil
doc round
What happens if you use one of these functions and compare the result to the original value?
0 comentarios
Roger Stafford
el 15 de Mzo. de 2018
Editada: Roger Stafford
el 15 de Mzo. de 2018
If n is your number, then
round(n)==n
is true if and only if n is an integer
0 comentarios
Star Strider
el 15 de Mzo. de 2018
isint = @(x) rem(x,1) == 0;
It returns a logical result.
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!