Precision number throughout scripts and functions.
5 次查看(过去 30 天)
显示 更早的评论
I have a script that calls many functions, when I run the script I want matlab to use a specific value of precision throughout. I have seen the documentation https://uk.mathworks.com/help/symbolic/increase-precision-of-numeric-calculations.html but this seems to just increase the precision for one single calculation?
Is there a way to set the precision to run throughout my entire code?
1 个评论
Rik
2021-11-15
It sets the precision for the uses of that variable, just like setting the data type to single would do.
You need to make sure that all calculations are performed with the vpa-created variables.
回答(1 个)
Chunru
2021-11-15
You can use "format" command to specify a format such as short, long, shortE, shortG. "doc format" for more information.
If you do want to have complete control of the display format, you need to use "fprintf" command.
3 个评论
Rik
2021-11-15
format (or fprintf) will only affect the display, not the precision. You are on the right track with vpa if you need more than what double can provide.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!