Problem 1485. Method of Common Differences part-1
Use the method of common differences to output a vector containing the initial values and the nth order difference.
ex [ 1 4 9 16 25 36 ] has 1st differences [ 3 5 7 9 11 ] and second differences [2 2 2 2] . Therefore output [1 3 2] which is the 1st element of the above three vectors.
The use of this is that the sequence can be continued by using these differences.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers57
Suggested Problems
-
Project Euler: Problem 2, Sum of even Fibonacci
2783 Solvers
-
1327 Solvers
-
Vectorize the digits of an Integer
332 Solvers
-
Reverse the elements of an array
1097 Solvers
-
convert matrix to single column
428 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!