Difference between revisions of "Manuals/calci/FIBONNACI"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
== Description == | == Description == | ||
− | FIBONNACI(SomeNumber) | + | FIBONNACI(SomeNumber) or FIBONACCI(SomeNumber) |
e.g. | e.g. | ||
FIBONNACI(3) returns ''0, 1, 1, 2'' as a result. | FIBONNACI(3) returns ''0, 1, 1, 2'' as a result. | ||
+ | |||
+ | FIBONACCI(6) returns ''0, 1, 1, 2, 3, 5, 8'' as a result. | ||
*Fibonacci sequence is a series of numbers in which, after first two numbers each subsequent number is the sum of the previous two numbers. | *Fibonacci sequence is a series of numbers in which, after first two numbers each subsequent number is the sum of the previous two numbers. | ||
Line 23: | Line 25: | ||
*If <math>SomeNumber</math> < zero(0), Calci displays #NULL error message. | *If <math>SomeNumber</math> < zero(0), Calci displays #NULL error message. | ||
*If <math>SomeNumber</math> is not an integer, Calci rounds it up to display the result. | *If <math>SomeNumber</math> is not an integer, Calci rounds it up to display the result. | ||
+ | |||
+ | *Both spellings supported - FIBONNACI(SomeNumber) or FIBONACCI(SomeNumber) | ||
== Examples == | == Examples == | ||
Line 43: | Line 47: | ||
|- class="odd" | |- class="odd" | ||
| class="sshl_f" |FIBONNACI(5.4) | | class="sshl_f" |FIBONNACI(5.4) | ||
+ | | class="sshl_f" |0, 1, 1, 2, 3, 5, 8 | ||
+ | |||
+ | |- class="even" | ||
+ | | class="sshl_f" |FIBONACCI(6) | ||
| class="sshl_f" |0, 1, 1, 2, 3, 5, 8 | | class="sshl_f" |0, 1, 1, 2, 3, 5, 8 | ||
Revision as of 16:19, 30 July 2014
FIBONNACI(SomeNumber)
where,
- is any real number.
FIBONNACI() displays the Fibonacci series up to the number specified in argument.
Description
FIBONNACI(SomeNumber) or FIBONACCI(SomeNumber)
e.g. FIBONNACI(3) returns 0, 1, 1, 2 as a result.
FIBONACCI(6) returns 0, 1, 1, 2, 3, 5, 8 as a result.
- Fibonacci sequence is a series of numbers in which, after first two numbers each subsequent number is the sum of the previous two numbers.
- Fibonacci sequence is as follows -
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, .......
- Argument specifies the count of numbers for which the sequence is to be displayed.
e.g. if is '3', Calci displays Fibonacci series up to 3 numbers excluding '0'.
- If < zero(0), Calci displays #NULL error message.
- If is not an integer, Calci rounds it up to display the result.
- Both spellings supported - FIBONNACI(SomeNumber) or FIBONACCI(SomeNumber)
Examples
Function | Output |
FIBONNACI(5) | 0, 1, 1, 2, 3, 5 |
FIBONNACI(6) | 0, 1, 1, 2, 3, 5, 8 |
FIBONNACI(5.4) | 0, 1, 1, 2, 3, 5, 8 |
FIBONACCI(6) | 0, 1, 1, 2, 3, 5, 8 |