Lo que todo programador debería saber sobre aritmética de punto flotante
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix spelling typo.

authored by

Chris Mear and committed by
Michael Borgwardt
e8a9d586 c2c96f3a

+1 -1
+1 -1
content/errors/propagation.html
··· 15 15 * This loss of digits can be inevitable and benign (when the lost digits also insignificant for 16 16 the final result) or catastrophic (when the loss is magnified and distorts the result strongly). 17 17 * The more calculations are done (especially when they form an iterative algorithm) the more important 18 - it is to consider this kind of problemm. 18 + it is to consider this kind of problem. 19 19 * A method of calculation can be *stable* (meaning that it tends to reduce rounding errors) 20 20 or *unstable* (meaning that rounding errors are magnified). Very often, there are both stable 21 21 and unstable solutions for a problem.