Excluding 0.5 from rounding
Show older comments
How can I exclude the 0.5 fraction from rounding such that the fractions less than or greater than 0.5 are only to be rounded?
Accepted Answer
More Answers (1)
Max Heimann
on 13 Jan 2022
Edited: Max Heimann
on 13 Jan 2022
if mod(x,1) ~= 0.5
x = round(x)
end
3 Comments
John D'Errico
on 13 Jan 2022
Good idea. But while that would work for scalar x, it is not vectorized, and it will fail for vectors and arrays.
Max Heimann
on 13 Jan 2022
Edited: Max Heimann
on 13 Jan 2022
How about this for vectors and matrices:
% Matrix with test values
x = [0 -4.5 -4.4; 3.3 0.5 1];
% Code
indices = mod(x,1) ~= 0.5;
x(indices) = round(x(indices))
John D'Errico
on 13 Jan 2022
Yes. That will work. And since 0.5 is exactly representable in floating point arithmetic as a double, the exact test for equality is sufficient.
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!