Solve A Fibonacci Sequence Using MATLAB
Question
A Fibonacci sequence is composed of elements created by two previous elements. The simplest Fibonacci sequence starts with 1, 1 and proceeds as follows:
1, 1, 2, 3, 5, 8, 13, 21……
A Fibonacci sequence can be created with any two starting numbers. Prompt the user to enter the first two numbers in a Fibonacci sequence. Next, prompt the user to enter the total number of elements in the sequence. For example, if the user enters the first two starting numbers as 2 and 4, and a sequence length of 7, your MATLAB program will display the following result:
2, 4, 6, 10, 16, 26, 42
Solve the above question using MATLAB. All your work must be performed in the M-file.
Summary
This question belongs to MATLAB software and discusses about application of MATLAB in mathematics to solve given Fibonacci sequence.
