i want to substract very large value from small value in matlab?

1 次查看(过去 30 天)
small value = 2.3654
large value = 6.7843e+130
Answer = small value - large value
try to find the substraction but every time i got answer -6.7843e+130.

回答(1 个)

madhan ravi
madhan ravi 2018-12-30
-6.7843e+130 is just a scientific notation of -6.7843*10^130 ,because the number is really huge matlab shows them as such.
  5 个评论
Walter Roberson
Walter Roberson 2019-1-5
>> digits(135)
>> smallvalue = sym('2.3654')
smallvalue =
2.3654
>> largevalue = sym('6.7843e+130')
largevalue =
67843000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0
>> answer = smallvalue - largevalue
answer =
-67842999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999997.6346

请先登录,再进行评论。

Community Treasure Hunt

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

Start Hunting!

Translated by