The Fibonacci Sequence and Golden Ratio.
Show older comments

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 Comments
Geoff Hayes
on 24 Mar 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
on 24 Mar 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
Accepted Answer
More Answers (0)
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!