Computes the generalized Fibonacci numbers as vectorized code.
You are now following this Submission
- You will see updates in your followed content feed
- You may receive emails, depending on your communication preferences
Fibonacci sequence
fibonacci.m
This is a simple GNU Octave/Matlab function to compute the Fibonacci sequence or numbers. Function is vectorized.
Syntax
FIBONACCI(N) computes the Fibonacci number of N. N can be a scalar, vector or matrix of integers. Negative numbers are allowed (negafibonacci).
FIBONACCI without input argument returns the first 10 numbers of the Fibonacci sequence.
Examples
> fibonacci(7)
13
> fibonacci(0:10)
0 1 1 2 3 5 8 13 21 34 55
Documentation
Type doc fibonacci or help fibonacci for syntax and options. See also users comments and rating on .
References
https://en.wikipedia.org/wiki/Fibonacci_sequence
Author
Cite As
François Beauducel (2026). Fibonacci sequence (https://github.com/beaudu/fibonacci/releases/tag/v1.0), GitHub. Retrieved .
Acknowledgements
Inspired by: Fibonacci.m
General Information
- Version 1.0 (13 KB)
-
View License on GitHub
MATLAB Release Compatibility
- Compatible with any release
Platform Compatibility
- Windows
- macOS
- Linux
| Version | Published | Release Notes | Action |
|---|---|---|---|
| 1.0 |
