Problem
Write MATLAB script that uses a while loop to calculate the all of the numbers in a Fibonacci sequence until you reach a maximum value of 900. The numbers in a Fibonacci sequence starts with 0 and 1 and then each following number is the sum of the two preceding ones. The function should output the list of numbers in the sequence up to the maximum value.
For instance the sequence starts 0, 1, 1, 2, 3 ...
You should find:
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610