필터 지우기
필터 지우기

Dividing small number by a large number?

조회 수: 2 (최근 30일)
Esteban
Esteban 2012년 6월 13일
Hi, I'm running a while loop within which I'm dividing integers (e.g 20, 40, 80) by 1e6 , but I keep getting '0' as my answer for each run of the while loop. What can I do to obtain as many values as possible to the right of the decimal point ? I've tried the 'format' method, but it doesn't seem to be working.
Any help is much appreciated.
Thanks!

답변 (1개)

Pavel Gorodetsky
Pavel Gorodetsky 2012년 6월 15일
by default, Matlab uses double to store numbers. if for some reason you are using int32 variables in your program, you could cast them to double:
double(a)/1e6
in case is of class int32. the format command only controls the way numbers are displayed in the command window. it does not effect the results

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by