The Fibonacci Sequence and Golden Ratio.
Ältere Kommentare anzeigen

Im having trouble calculating the Golden Ratios until the desired accuracy is reached
% Code
Fibonacci Sequence
F=[1 1 2 3 5 8 13 21 34 55]
DA=input('How many decimals of accuracy would you like to calculate the Golden Ratio to: ');
G=round(((1+sqrt(5))/2),DA);
GR(1)=0;
for index=2:N % N, is equal to 10
GR(index)=F(index)/F(index-1);
index=index+1;
if round(GR,DA)==G
end
end
2 Kommentare
Geoff Hayes
am 24 Mär. 2020
Jose - careful with code like
round(GR,DA)==G
because GR is an array whereas DA and G are scalars. Do you really mean to compare (or whatever) the array GR with DA and G? Or do you just want to consider the last element of GR? Also, you use == (generally) when comparing integers and not when using doubles (due to floating point precision, etc.) and so instead would use some sort of tolerance test to see if two doubles (or floats) are "close enough". This might be something like
abs(x - y) < eps
to check to see if the difference between the two numbers is small enough (less than eps) so that x and y can be considered equal. You will probably need to do something here with the last element calculated in GR and G.
David Hill
am 24 Mär. 2020
I believe that you need to calculate the Fibonacci number as you go and should not use a lookup table. I suggest you use a while loop looking at the difference of the last two Golden ratios calculated to determine if the accuracy requirement is met. If accuracy greater than floating point is required, then that is another problem. Try something like:
F(1:2)=1;
GR(1:2)=[0,1]
c=3;
while abs(GR(end)-GR(end-1))>10^-DA
F(c)=F(c-1)+F(c-2);
GR(c)=F(c)/F(c-1);
c=c+1;
end
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!