how to decrease precision
显示 更早的评论
I am trying to show to my students examples on the effect of rounds error when performing Gauss elimination without pivoting. This question is very easy with Maple, simply by fixing the numbers of desired digits with Digits:=4, for instance. In this way, I can show the errors appearing in the solution when performing Gauss elimination without pivoting.
But I do not know haw to proceed in Matlab, I always get the exact solution.
Thank you in advance.
1 个评论
Rik
2019-2-17
Are you using a numerical method, or are you using the symbolic toolbox? In the case of the first, you can use this:
digits=4;
data=(10^digits)*round(data/(10^digits));% round to n digits
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!