How to sorten the result value depicted on text area
1 次查看(过去 30 天)
显示 更早的评论
hello, please help me.
the result of my calculation which is presented on "text area" is too long. i wanna shorten it at least to have one digit decimal. how can i do that? thanks
0 个评论
采纳的回答
NAVNEET NAYAN
2023-9-12
编辑:NAVNEET NAYAN
2023-9-12
you can use "round" function.
See it's documentation (https://in.mathworks.com/help/releases/R2022b/matlab/ref/round.html?s_tid=doc_srchtitle).
I think that might also help.
Like
Min_diameter=0.56616
Min_diameter=round(Min_diameter,N);
N in your case will be 1, as you are looking for one digit decimal place.
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!