function [output]=ArbAcc(a,digits)
output = round(a*power(10,digits))/power(10,digits);
end
这会创建一个函数ArbAcc
,它会将您的数据相乘,对其进行舍入并最终将其移回以获得所需的输出。
或者,正如@HamtaroWarrior所说,使用roundn
(请注意,roundn
需要映射工具箱):
a = roundn(a,-digits);
如果我继续阅读文档,我会看到不再推荐使用roundn
,请使用round
:
Y = round(X,N);% rounds to N digits