Azzera filtri
Azzera filtri

exp(log(x))-x?

2 visualizzazioni (ultimi 30 giorni)
Hoon
Hoon il 22 Apr 2016
Risposto: John D'Errico il 22 Apr 2016
Analytically, exp(log(x))-x should give zero.
But In matlab, it is not zero
x=linspace(1,10,10);
exp(log(x))-x;
for x=1 to 10, the answer is
0
0
-4.44089209850063e-16
0
0
0
0
-1.77635683940025e-15
1.77635683940025e-15
1.77635683940025e-15
what is happening?
and how can I fix this?
  1 Commento
Adam
Adam il 22 Apr 2016
It is 0 to within a certain precision. The results of mathematical operations involving doubles rarely produce the exact results due to the precision of the representation.
Why do you need to "fix it"? In what context are you using it?

Accedi per commentare.

Risposte (2)

Azzi Abdelmalek
Azzi Abdelmalek il 22 Apr 2016

John D'Errico
John D'Errico il 22 Apr 2016
You cannot "fix" it, not as long as you work with numbers represented in floating point arithmetic. Floating point arithmetic is not mathematics. The two look a lot alike, but they are not the same.
The only fix available is in your mind, learning what you can and cannot do. Of course, if you are willing to always work in symbolic form, then you can resolve this. Your code will be painfully slow then.

Community Treasure Hunt

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

Start Hunting!

Translated by