Round double value to 2 decimal
85 次查看(过去 30 天)
显示 更早的评论
Hi all,
I'm trying to round an array of double values to 2 decimals.
This is my code:
for k=1:n,
y(k)=k*st;
y(k)= sprintf('%0.2f', y(k));
x(k) = sqrt(d^2+(2*y(k))^2)-d;
x(k)= sprintf('%0.2f', x(k));
end
I got the following error message:
In an assignment A(I) = B, the number of elements in B and I must be the same.
BTW! the value n is 10.
I want the arrays y and x with 2 decimal values. Ex: 1.23
Thanks a lot.
Raúl. In an assignment A(I) = B, the number of elements in B and I must be the same.
4 个评论
Walter Roberson
2013-3-22
Are you trying to change how the number is displayed, or to assign a new value that is the old one rounded to 2 decimal digits?
采纳的回答
Matt Tearle
2013-3-21
The reason you're getting the error is that sprintf creates a char array -- in this case, a 1-by-4 char array made up of the 4 characters '1', '.', '2', and '3'. But your assignment is to a single element y(k).
Possible solutions are to index into the kth row of a char array, which you should keep separate from your double array y (otherwise you'll get another error), or to use cell arrays as Wouter suggests, or to just round everything as doubles and avoid strings altogether (as Wouter also suggests).
I'd recommend the last approach. You can always display things with sprintf or fprintf at the end, and this can be done without a for-loop: fprintf(1,'%0.2f\n',x)
2 个评论
Matt Tearle
2013-3-21
I don't understand what the problem is. MATLAB, like any numerical language stores all floating-point numbers to a certain precision (in MATLAB, the default is double, which is about 16 decimal places), so rounding 1.234567... to 2 dp means -- by definition -- changing the stored value to 1.230000...
How the number is stored is different to how it's displayed. MATLAB's default display is 4 dp. If you want the number displayed in a certain format, use something like fprintf. In the special case of 2 dp, you could also use the MATLAB command format bank, which will set the Command Window display style to 2 dp instead of 4. This is a universal change until you use format to change back to a different style.
更多回答(1 个)
Wouter
2013-3-21
编辑:Wouter
2013-3-21
How about this:
a = rand(1,10);
y ={};
n=length(a);
for k = 1:n
y{k} = sprintf('%0.2f',a(k));
end
Because sprintf returns a string, you need to put it in a cell: {}.
You could also round a like this (if you do not want strings):
a = rand(1,10);
y = round(a * 100)/100; % two decimals remain; more decimals are set to 0.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Multirate Signal Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!