Filter löschen
Filter löschen

How would I make my for loop more accurate.

1 Ansicht (letzte 30 Tage)
A C
A C am 10 Feb. 2019
Beantwortet: Walter Roberson am 10 Feb. 2019
a = 0;
b = 1;
c = 0;
d = 1;
for k = 1:700
c = a + b;
a = b;
b = c;
d = [d c];
end
format long
d(700) %>>> 8.747081495575278e+145
fibonacci(700) %>>> 8.747081495575285e+145
I believe the function fibonacci(n) has the correct number.
How does the function fibonacci have a more accurate number?

Antworten (1)

Walter Roberson
Walter Roberson am 10 Feb. 2019
fibonnaci() is a function in the Symbolic Toolbox. It calculates the numbers as indefinite precision software integers, and then converts the result to double.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by