i want to substract very large value from small value in matlab?
    5 次查看(过去 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.
0 个评论
回答(1 个)
  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
      
      
 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!


