About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Compute the Fibonacci number index.
The Fibonacci number index is given by
where φ
is the golden ratio and F > 1
.
npm install @stdlib/math-base-special-fibonacci-index
var fibonacciIndex = require( '@stdlib/math-base-special-fibonacci-index' );
Computes the Fibonacci number index for F_n > 1
.
var n = fibonacciIndex( 2 );
// returns 3
n = fibonacciIndex( 3 );
// returns 4
n = fibonacciIndex( 5 );
// returns 5
If provided either a non-integer or F_n <= 1
, the function returns NaN
.
var n = fibonacciIndex( -1 );
// returns NaN
n = fibonacciIndex( 3.14 );
// returns NaN
If provided NaN
, the function returns NaN
.
var n = fibonacciIndex( NaN );
// returns NaN
var fibonacciIndex = require( '@stdlib/math-base-special-fibonacci-index' );
var F1;
var F2;
var FN;
var n;
var i;
F1 = 1;
F2 = 1;
for ( i = 3; i < 79; i++ ) {
FN = F1 + F2;
F1 = F2;
F2 = FN;
n = fibonacciIndex( FN );
console.log( 'n(%d) = %d', FN, n );
}
#include "stdlib/math/base/special/fibonacci_index.h"
Compute the Fibonacci number index.
double out = stdlib_base_fibonacci( 2 );
// returns 3
out = stdlib_base_fibonacci( 3 );
// returns 4
The function accepts the following arguments:
-
n:
[in] double
input value.
double stdlib_base_fibonacci( const double F );
#include "stdlib/math/base/special/fibonacci_index.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 2.0, 3.0, 5.0, 8.0 };
double y;
int i;
for ( i = 0; i < 4; i++ ) {
y = stdlib_base_fibonacci_index( x[ i ] );
printf( "fibonacci_index(%lf) = %lf\n", x[ i ], y );
}
}
-
@stdlib/math-base/special/fibonacci
: compute the nth Fibonacci number.
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2024. The Stdlib Authors.