Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN le 30 Déc 2018
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.

Réponses (1)

madhan ravi
madhan ravi le 30 Déc 2018
-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 commentaires
GHUFRAN AHMAD KHAN
GHUFRAN AHMAD KHAN le 4 Jan 2019
i have already symbolic toolbox but still problem could not resolved.
Walter Roberson
Walter Roberson le 5 Jan 2019
>> digits(135)
>> smallvalue = sym('2.3654')
smallvalue =
2.3654
>> largevalue = sym('6.7843e+130')
largevalue =
67843000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0
>> answer = smallvalue - largevalue
answer =
-67842999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999997.6346

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by