i have an value as 6.5.give me the syntax to get the whole number 6
1 回表示 (過去 30 日間)
古いコメントを表示
i have an value as 6.5.give me the syntax to get the whole number 6
0 件のコメント
採用された回答
Azzi Abdelmalek
2012 年 11 月 1 日
編集済み: Azzi Abdelmalek
2012 年 11 月 1 日
a=6.5
fix (a)
% for other rounding look at round, ceil command
その他の回答 (1 件)
Image Analyst
2012 年 11 月 1 日
Do you want a floating point number or an integer? Here it is both ways:
v = 6.5;
vDouble = floor(v)
class(vDouble)
vInt = int32(floor(v))
class(vInt)
In the command window:
vDouble =
6
ans =
double
vInt =
6
ans =
int32
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Clocks and Timers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!