Why does this algorithm yield an 'incorrect' result?
Afficher commentaires plus anciens
The following code yields cumul_total = 2.000000000026658e+05 . What is the '26658' on the end? Why does this occur?
Thank you
A = (0.2);
cumul_total = (0.0);
for iii = 1:1e6
cumul_total = cumul_total + A;
end
cumul_total
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Elementary Math dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!