Excluding 0.5 from rounding
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (1)
Max Heimann
el 13 de En. de 2022
Editada: Max Heimann
el 13 de En. de 2022
if mod(x,1) ~= 0.5
x = round(x)
end
3 comentarios
John D'Errico
el 13 de En. de 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
el 13 de En. de 2022
Editada: Max Heimann
el 13 de En. de 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
el 13 de En. de 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.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!