Azzera filtri
Azzera filtri

IEEE Arithematic

1 visualizzazione (ultimi 30 giorni)
Ashish Bhatt
Ashish Bhatt il 29 Gen 2012
I have a row vector [3 (6-3e)/(2-2e) 1] and a column vector [3 14 -5-((6-3e)/(2-2e))*14]' where e = 1+0.5*10^-15. When I multiply these two vectors I get a 0 and I don't understand why? The second and third product is equal in magnitude but opposite in sign, so they should cancel out and the answer should be close to 9.This is how matlab computes these two vectors:
row vector = [3.000000000000000e+000 -3.377699720527871e+015 1.000000000000000e+000]
column vector = [ 3.000000000000000e+000 1.400000000000000e+001 4.728779608739018e+016]

Risposta accettata

James Tursa
James Tursa il 29 Gen 2012
Limitations of floating point arithmetic, again. Particularly with matrix and vector operations, you are not guaranteed any particular order of operations in MATLAB. If you want a particular order then you would have to manually write the expression using parentheses. So in general, relatively "small" values can get swamped by relatively "large" values in a computation and lose significance. When you subtract two relatively "large" values the relatively "small" value significance may not be there to recover, and you end up with a lot of garbage bits. I could go through your calculation in detail to explain it, but I think I will leave that up to you instead. Just write out the expression in detail and use the num2strexact utility to examine each intermediate result and then you should see what is going on with the lost precision.
  6 Commenti
Ashish Bhatt
Ashish Bhatt il 29 Gen 2012
I am using MATLAB 7.5.0.342 (R2007b) on a 64 bit Windows 7 Machine. I am currently downloading intel C++. What should I enter for compiler when mex file prompts me?
James Tursa
James Tursa il 29 Gen 2012
If you download a supported compiler, it should show up in the list when you type mex -setup.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Downloads in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by