Trying to see if a variable is an integer or not
1 回表示 (過去 30 日間)
古いコメントを表示
x=2.5;
isaninteger = @(x)isfinite(x)
x=floor(x)
answer=isaninteger(x)
I want the answer here to show that x is not an integer but all it shows is answer = 1. No idea how to fix this
The correct output here would be answer = 0
0 件のコメント
採用された回答
per isakson
2021 年 5 月 10 日
編集済み: per isakson
2021 年 5 月 10 日
Try this
%%
x=2.5;
answer = ( x == floor(x) )
3 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!