Excluding 0.5 from rounding
이전 댓글 표시
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?
채택된 답변
추가 답변 (1개)
Max Heimann
2022년 1월 13일
편집: Max Heimann
2022년 1월 13일
if mod(x,1) ~= 0.5
x = round(x)
end
댓글 수: 3
John D'Errico
2022년 1월 13일
Good idea. But while that would work for scalar x, it is not vectorized, and it will fail for vectors and arrays.
Max Heimann
2022년 1월 13일
편집: Max Heimann
2022년 1월 13일
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
2022년 1월 13일
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.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!