i have number i need save only integer without any point or 'e'
显示 更早的评论
i have a ' x = ATRTIMED(c) * 360 ' the result is '3.700000e+02' i dont need this only i need integer 370 like this
回答(3 个)
Star Strider
2021-3-2
1 个投票
I am not certain what you want to do.
To change the way the numbers are displayed, change the format options to display the numbers as you want them.
Hernia Baby
2021-3-2
format
% x = ATRTIMED(c) * 360
x = 3.700000e+02;
x
Jan
2021-3-2
To get an integer value use round, floor or ceil.
If you only want to hide the fractional part, which can contain small numbers due to the limited precision of doubles, see:
doc format
类别
在 帮助中心 和 File Exchange 中查找有关 Linear Algebra 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!