-
-
Notifications
You must be signed in to change notification settings - Fork 807
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add math/base/special/fibonaccif
#6309
Closed
Closed
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
709fa52
chore: adding essential files
Neerajpathak07 a830b82
chore: refactoring benchmarks
Neerajpathak07 48cc51b
chore: minor clean up
Neerajpathak07 1312fcf
chore: minor clean up
Neerajpathak07 eda6ba5
chore: referencing the svg to previous version
Neerajpathak07 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
258 changes: 258 additions & 0 deletions
258
lib/node_modules/@stdlib/math/base/special/fibonaccif/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
<!-- | ||
|
||
@license Apache-2.0 | ||
|
||
Copyright (c) 2025 The Stdlib Authors. | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
|
||
--> | ||
|
||
# Fibonaccif | ||
|
||
> Compute the nth [Fibonacci number][fibonacci-number] as a [single-precision floating-point number][ieee754]. | ||
|
||
<section class="intro"> | ||
|
||
The [Fibonacci numbers][fibonacci-number] are the integer sequence | ||
|
||
<!-- <equation class="equation" label="eq:fibonacci_sequence" align="center" raw="0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, \ldots" alt="Fibonacci sequence"> --> | ||
|
||
```math | ||
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, \ldots | ||
``` | ||
|
||
<!-- <div class="equation" align="center" data-raw-text="0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, \ldots" data-equation="eq:fibonacci_sequence"> | ||
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/fibonaccif/docs/img/equation_fibonacci_sequence.svg" alt="Fibonacci sequence"> | ||
<br> | ||
</div> --> | ||
|
||
<!-- </equation> --> | ||
|
||
The sequence is defined by the recurrence relation | ||
|
||
<!-- <equation class="equation" label="eq:fibonacci_recurrence_relation" align="center" raw="F_n = F_{n-1} + F_{n-2}" alt="Fibonacci sequence recurrence relation"> --> | ||
|
||
```math | ||
F_n = F_{n-1} + F_{n-2} | ||
``` | ||
|
||
<!-- <div class="equation" align="center" data-raw-text="F_n = F_{n-1} + F_{n-2}" data-equation="eq:fibonacci_recurrence_relation"> | ||
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@bb29798906e119fcb2af99e94b60407a270c9b32/lib/node_modules/@stdlib/math/base/special/fibonaccif/docs/img/equation_fibonacci_recurrence_relation.svg" alt="Fibonacci sequence recurrence relation"> | ||
<br> | ||
</div> --> | ||
|
||
<!-- </equation> --> | ||
|
||
with seed values `F_0 = 0` and `F_1 = 1`. | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var fibonaccif = require( '@stdlib/math/base/special/fibonaccif' ); | ||
``` | ||
|
||
#### fibonaccif( n ) | ||
|
||
Computes the nth [Fibonacci number][fibonacci-number] as a [single-precision floating-point number][ieee754]. | ||
|
||
```javascript | ||
var v = fibonaccif( 0 ); | ||
// returns 0 | ||
|
||
v = fibonaccif( 1 ); | ||
// returns 1 | ||
|
||
v = fibonaccif( 2 ); | ||
// returns 1 | ||
|
||
v = fibonaccif( 3 ); | ||
// returns 2 | ||
|
||
v = fibonaccif( 36 ); | ||
// returns 14930352 | ||
``` | ||
|
||
If `n > 36`, the function returns `NaN`, as larger [Fibonacci numbers][fibonacci-number] cannot be safely represented in [single-precision floating-point format][ieee754]. | ||
|
||
```javascript | ||
var v = fibonaccif( 37 ); | ||
// returns NaN | ||
``` | ||
|
||
If not provided a nonnegative integer value, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = fibonaccif( 3.14 ); | ||
// returns NaN | ||
|
||
v = fibonaccif( -1 ); | ||
// returns NaN | ||
``` | ||
|
||
If provided `NaN`, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = fibonaccif( NaN ); | ||
// returns NaN | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var fibonaccif = require( '@stdlib/math/base/special/fibonaccif' ); | ||
|
||
var v; | ||
var i; | ||
|
||
for ( i = 0; i < 37; i++ ) { | ||
v = fibonaccif( i ); | ||
console.log( v ); | ||
} | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
<!-- C interface documentation. --> | ||
|
||
* * * | ||
|
||
<section class="c"> | ||
|
||
## C APIs | ||
|
||
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. --> | ||
|
||
<section class="intro"> | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<!-- C usage documentation. --> | ||
|
||
<section class="usage"> | ||
|
||
### Usage | ||
|
||
```c | ||
#include "stdlib/math/base/special/fibonaccif.h" | ||
``` | ||
|
||
#### stdlib_base_fibonaccif( n ) | ||
|
||
Computes the nth [Fibonacci number][fibonacci-number] as a [single-precision floating-point number][ieee754]. | ||
|
||
```c | ||
float out = stdlib_base_fibonaccif( 0 ); | ||
// returns 0 | ||
|
||
out = stdlib_base_fibonaccif( 1 ); | ||
// returns 1 | ||
``` | ||
|
||
The function accepts the following arguments: | ||
|
||
- **n**: `[in] int32_t` input value. | ||
|
||
```c | ||
float stdlib_base_fibonaccif( const int32_t n ); | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<!-- C API usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="notes"> | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<!-- C API usage examples. --> | ||
|
||
<section class="examples"> | ||
|
||
### Examples | ||
|
||
```c | ||
#include "stdlib/math/base/special/fibonaccif.h" | ||
#include <stdio.h> | ||
#include <stdint.h> | ||
|
||
int main( void ) { | ||
int32_t i; | ||
float v; | ||
|
||
for ( i = 0; i < 37; i++ ) { | ||
v = stdlib_base_fibonaccif( i ); | ||
printf( "fibonaccif(%d) = %f\n", i, v ); | ||
} | ||
} | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.examples --> | ||
|
||
</section> | ||
|
||
<!-- /.c --> | ||
|
||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
|
||
<section class="related"> | ||
|
||
</section> | ||
|
||
<!-- /.related --> | ||
|
||
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
|
||
<section class="links"> | ||
|
||
[fibonacci-number]: https://en.wikipedia.org/wiki/Fibonacci_number | ||
|
||
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985 | ||
|
||
<!-- <related-links> --> | ||
|
||
<!-- </related-links> --> | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kept it close to the safe_integer limit for more clarity.