How can I write a program that indicates a number if it is integer or not?
古いコメントを表示
How can I write a program that indicates a number if it is integer or not?
回答 (3 件)
James Tursa
2018 年 3 月 15 日
doc floor
doc ceil
doc round
What happens if you use one of these functions and compare the result to the original value?
Roger Stafford
2018 年 3 月 15 日
編集済み: Roger Stafford
2018 年 3 月 15 日
If n is your number, then
round(n)==n
is true if and only if n is an integer
Star Strider
2018 年 3 月 15 日
isint = @(x) rem(x,1) == 0;
It returns a logical result.
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!