Approximate the variable in the workspace to one digite ?
显示 更早的评论
Hi all
I am have 1000 variables in the workspace, each one have five digits after the comma like 50,44444
How aproximated all 1000 variables to one digit after the comma like 50,4 ? because I cant chang each one individually ? so difficult!
采纳的回答
更多回答(2 个)
Star Strider
2014-11-19
1 个投票
See the documentation for format. You can set the numeric display to one of several options. (The data themselves are all stored to the same precision, so the display precision does not affect the data precision.)
Image Analyst
2014-11-19
Use the round function:
m=rand(4) % Tons of digits.
m1 = round(m, 1) % Round to first digit.
Hopefully your thousands of variables are in an array and not truly thousands of separate variables, which would be bad programming practice.
1 个评论
David Young
2014-11-19
Well I learnt something from that! I hadn't noticed the new optional arguments for round()!
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!