Excluding 0.5 from rounding
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Max Heimann
le 13 Jan 2022
Modifié(e) : Max Heimann
le 13 Jan 2022
if mod(x,1) ~= 0.5
x = round(x)
end
3 commentaires
John D'Errico
le 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
le 13 Jan 2022
Modifié(e) : Max Heimann
le 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
le 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.
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!