Question: matlab code % The fibonacci sequence is the sequence 1, 1, 2, 3, 5, 8, 13, 21, % where you can find the next value

matlab code
% The fibonacci sequence is the sequence 1, 1, 2, 3, 5, 8, 13, 21, % where you can find the next value by 2 = 1 + 1, 3 = 2 + 1, 5 = 3 + 2, ... % % WRITE CODE BELOW: % Step 1: Initialize an array x so that it has length 100 and x(1) % and x(2) are 1 % Step 2: Use a for loop to fill in the remaining entries in x so that it % matches the fibonacci sequence % Step 3: Create a new vector called y of length 99 and fill it so that % it looks like [x(2)/x(1), x(3)/x(2), x(4)/x(3), ..., x(100)/x(99)]. % WRITE COMMENT BELOW: % As you read through the values of y, they should be closing in on a % specific value. What is this value? % %
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
