finding the power of a number
이전 댓글 표시
hello, actually what i wanted to know is: if i have a number like 0.6543e+013. Now i just need 0.6543.so i need to divide by 10^the power.but i cant understand how to find this value of power.Is there any function available in matlab that can give me my value...?
Thank you, Ekta
채택된 답변
추가 답변 (2개)
Andrei Bobrov
2013년 6월 22일
x = 0.6543e+013
x*10^-ceil(log10(x))
Jan
2013년 6월 23일
What is the wanted result for:
123.456
0.0000000000123
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!