How can I cut four numbers after the decimal number without rounding using MATLAB ?
조회 수: 13 (최근 30일)
이전 댓글 표시
I have a number like this:
2.32166873546944
I want to take only four numbers after the decimal point and without rounding, that is, I only want:
2.3216
How do I do this in Matlab ?
댓글 수: 0
채택된 답변
John D'Errico
2023년 12월 3일
편집: John D'Errico
2023년 12월 3일
You want to truncate after the 4th decimal place? Easy peasy.
You shift where the decimal place lies, then use floor.
format long g
x = 2.32166873546944
y = floor(x*10000)/10000
댓글 수: 2
Walter Roberson
2023년 12월 4일
If you want "four digits after the decimal place" you should probably use fix() instead of floor()
format long g
x = 2.32166873546944
xn = -x
y1 = floor(x*10000)/10000
y2 = fix(x*100000)/100000
y3 = floor(xn*10000)/10000
y4 = fix(xn*10000)/10000
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!