-
-
Notifications
You must be signed in to change notification settings - Fork 825
feat: add math/base/special/tribonaccif
#6066
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
Open
Neerajpathak07
wants to merge
13
commits into
stdlib-js:develop
Choose a base branch
from
Neerajpathak07:add-tribonaccif
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 9 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
f67e2a7
feat: add-tribonaccif
Neerajpathak07 082f568
chore: update C implementation
Neerajpathak07 ff9d9d3
chore: update manifest
Neerajpathak07 52ea241
refactor: C implementation
Neerajpathak07 fcee177
refactor: C implementation
Neerajpathak07 684dce0
chore: update tests
Neerajpathak07 683f6eb
chore: update README
Neerajpathak07 7eadadb
chore: update repl input value
Neerajpathak07 08d43a6
chore: refactor READEM file
Neerajpathak07 02aa5ac
chore: changes from code review
Neerajpathak07 1a2f489
chore: adding sections for related packages
Neerajpathak07 a897f64
Merge remote-tracking branch 'upstream/develop' into add-tribonaccif
stdlib-bot c450a93
chore: code review
anandkaranubc 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
254 changes: 254 additions & 0 deletions
254
lib/node_modules/@stdlib/math/base/special/tribonaccif/README.md
This file contains hidden or 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,254 @@ | ||
<!-- | ||
|
||
@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. | ||
|
||
--> | ||
|
||
# Tribonaccif | ||
|
||
> Compute the nth [Tribonacci number][tribonacci-number] for [single-precision floating-point number][ieee754]. | ||
|
||
<section class="intro"> | ||
|
||
The [Tribonacci numbers][tribonacci-number] are the integer sequence | ||
|
||
<!-- <equation class="equation" label="eq:tribonacci_sequence" align="center" raw="0, 0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274, 504, 927, 1705, \ldots" alt="Tribonacci sequence"> --> | ||
|
||
```math | ||
0, 0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274, 504, 927, 1705, \ldots | ||
``` | ||
|
||
<!-- <div class="equation" align="center" data-raw-text="0, 0, 1, 1, 2, 4, 7, 13, 24, 44, 81, 149, 274, 504, 927, 1705, \ldots" data-equation="eq:tribonacci_sequence"> | ||
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@3249a68fb57cd71148f87ef3b2774be70a04d80a/lib/node_modules/@stdlib/math/base/special/tribonacci/docs/img/equation_tribonacci_sequence.svg" alt="Tribonacci sequence"> | ||
<br> | ||
</div> --> | ||
|
||
<!-- </equation> --> | ||
|
||
The sequence is defined by the recurrence relation | ||
|
||
<!-- <equation class="equation" label="eq:tribonacci_recurrence_relation" align="center" raw="F_n = F_{n-1} + F_{n-2} + F_{n-3}" alt="Tribonacci sequence recurrence relation"> --> | ||
|
||
```math | ||
F_n = F_{n-1} + F_{n-2} + F_{n-3} | ||
``` | ||
|
||
<!-- <div class="equation" align="center" data-raw-text="F_n = F_{n-1} + F_{n-2} + F_{n-3}" data-equation="eq:tribonacci_recurrence_relation"> | ||
<img src="https://cdn.jsdelivr.net/gh/stdlib-js/stdlib@3249a68fb57cd71148f87ef3b2774be70a04d80a/lib/node_modules/@stdlib/math/base/special/tribonacci/docs/img/equation_tribonacci_recurrence_relation.svg" alt="Tribonacci sequence recurrence relation"> | ||
<br> | ||
</div> --> | ||
|
||
<!-- </equation> --> | ||
|
||
with seed values `F_0 = 0`, `F_1 = 0`, and `F_2 = 1`. | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var tribonaccif = require( '@stdlib/math/base/special/tribonaccif' ); | ||
``` | ||
|
||
#### tribonaccif( n ) | ||
|
||
Computes the nth [Tribonacci number][tribonacci-number] for [single-precision floating-point number][ieee754]. | ||
Neerajpathak07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
```javascript | ||
var v = tribonaccif( 0 ); | ||
// returns 0 | ||
|
||
v = tribonaccif( 1 ); | ||
// returns 0 | ||
|
||
v = tribonaccif( 2 ); | ||
// returns 1 | ||
|
||
v = tribonaccif( 3 ); | ||
// returns 1 | ||
|
||
v = tribonaccif( 30 ); | ||
// returns 15902591 | ||
``` | ||
|
||
If `n > 30`, the function returns `NaN`, as larger [Tribonacci numbers][tribonacci-number] cannot be safely represented in [single-precision floating-point format][ieee754]. | ||
|
||
```javascript | ||
var v = tribonaccif( 32 ); | ||
Neerajpathak07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
// returns NaN | ||
``` | ||
|
||
If not provided a nonnegative integer value, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = tribonaccif( 3.14 ); | ||
// returns NaN | ||
|
||
v = tribonaccif( -1 ); | ||
// returns NaN | ||
``` | ||
|
||
If provided `NaN`, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = tribonaccif( NaN ); | ||
// returns NaN | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var tribonaccif = require( '@stdlib/math/base/special/tribonaccif' ); | ||
|
||
var v; | ||
var i; | ||
|
||
for ( i = 0; i < 31; i++ ) { | ||
v = tribonaccif( 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/tribonaccif.h" | ||
``` | ||
|
||
#### stdlib_base_tribonaccif( n ) | ||
|
||
Computes the nth [Tribonacci number][tribonacci-number] [single-precision floating-point number][ieee754]. | ||
Neerajpathak07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
```c | ||
float out = stdlib_base_tribonaccif( 0f ); | ||
// returns 0f | ||
|
||
out = stdlib_base_tribonaccif( 1f ); | ||
// returns 0f | ||
Neerajpathak07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
``` | ||
|
||
The function accepts the following arguments: | ||
|
||
- **n**: `[in] int32_t` input value. | ||
|
||
```c | ||
float stdlib_base_tribonaccif( 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/tribonaccif.h" | ||
#include <stdio.h> | ||
#include <stdint.h> | ||
|
||
int main( void ) { | ||
int32_t i; | ||
float v; | ||
|
||
for ( i = 0; i < 31; i++ ) { | ||
v = stdlib_base_tribonaccif( i ); | ||
printf( "tribonaccif(%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"> | ||
|
||
[tribonacci-number]: https://en.wikipedia.org/wiki/Generalizations_of_Fibonacci_numbers#Tribonacci_numbers | ||
|
||
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985 | ||
|
||
Neerajpathak07 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</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.
Uh oh!
There was an error while loading. Please reload this page.