FAST QUESTION! How to round a variable to the first decimal number
조회 수: 2 (최근 30일)
이전 댓글 표시
Hi, i have a variable like this:
Velocity = 6.76979593929292939392
And I want it to round it to this:
Velocity = 6.80
So, just one number behind the period. I have tried round(Velocity,1) but it did not work.
Thanks!
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2015년 2월 4일
편집: Azzi Abdelmalek
2015년 2월 4일
Velocity = 6.76979593929292939392
out=round(Velocity*10)/10
Look also at
help fix
help ceil
댓글 수: 0
추가 답변 (1개)
Guillaume
2015년 2월 4일
Since R2014b, round accepts a number of digits to round to:
Velocity = round(Velocity, 1);
In older versions of matlab, you have to use Azzi's answer.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Fourier Analysis and Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!