-
-
Notifications
You must be signed in to change notification settings - Fork 795
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/lucasf
#6223
Open
hrshya
wants to merge
28
commits into
stdlib-js:develop
Choose a base branch
from
hrshya:feat/lucasf
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.
+2,828
−0
Open
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
361a388
feat: add math/base/special/lucasf
hrshya cf606d1
fix: fixes ci issues
hrshya 86c575b
fix: fixes ci issues
hrshya bda525f
resolve lint errors
hrshya d748e4e
update README.md
hrshya 3e0abaf
Merge remote-tracking branch 'upstream/develop' into feat/lucasf
stdlib-bot 2e66f7e
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/addon.c
hrshya 5eb3aea
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya 3de4e3c
Update lib/node_modules/@stdlib/math/base/special/lucasf/examples/c/e…
hrshya f99b17c
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/main.js
hrshya 01cac68
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/index.js
hrshya 85ec479
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/native.js
hrshya 3cfcb39
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya 831b894
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya ffce25f
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya 53b2641
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya 08d30ea
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya 158f6e4
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya e84e9e3
Update lib/node_modules/@stdlib/math/base/special/lucasf/package.json
hrshya a842055
Update lib/node_modules/@stdlib/math/base/special/lucasf/docs/repl.txt
hrshya 4f260ba
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya f792e18
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya 4d923d4
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/be…
hrshya 7cc977d
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya 64d7387
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya 06e6456
Merge branch 'feat/lucasf' of https://github.com/hrshya/stdlib into f…
hrshya a5c0ed6
fix: fixes suggested changes
hrshya dd01b77
Merge remote-tracking branch 'upstream/develop' into feat/lucasf
stdlib-bot 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
243 changes: 243 additions & 0 deletions
243
lib/node_modules/@stdlib/math/base/special/lucasf/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,243 @@ | ||
<!-- | ||
@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. | ||
--> | ||
|
||
# Lucasf | ||
|
||
> Compute the nth [Lucas number][lucas-number] as a single-precision floating-point number. | ||
<section class="intro"> | ||
|
||
The [Lucas numbers][lucas-number] are the integer sequence | ||
|
||
<!-- <equation class="equation" label="eq:lucas_sequence" align="center" raw="2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, \ldots" alt="Lucas sequence"> --> | ||
|
||
```math | ||
2, 1, 3, 4, 7, 11, 18, 29, 47, 76, 123, 199, 322, \ldots | ||
``` | ||
|
||
<!-- </equation> --> | ||
|
||
The sequence is defined by the recurrence relation | ||
|
||
<!-- <equation class="equation" label="eq:lucas_recurrence_relation" align="center" raw="L_n = \begin{cases}2 & \textrm{if}\ n = 0\\1 & \textrm{if}\ n = 1\\L_{n-1} + L_{n-2} & \textrm{if}\ n > 1\end{cases}" alt="Lucas sequence recurrence relation"> --> | ||
|
||
```math | ||
L_n = \begin{cases}2 & \textrm{if}\ n = 0\\1 & \textrm{if}\ n = 1\\L_{n-1} + L_{n-2} & \textrm{if}\ n > 1\end{cases} | ||
``` | ||
|
||
<!-- </equation> --> | ||
|
||
</section> | ||
|
||
<!-- /.intro --> | ||
|
||
<section class="usage"> | ||
|
||
## Usage | ||
|
||
```javascript | ||
var lucasf = require( '@stdlib/math/base/special/lucasf' ); | ||
``` | ||
|
||
#### lucasf( n ) | ||
|
||
Compute the nth [Lucas number][lucas-number] as a single-precision floating-point number. | ||
|
||
```javascript | ||
var v = lucasf( 0 ); | ||
// returns 2 | ||
|
||
v = lucasf( 1 ); | ||
// returns 1 | ||
|
||
v = lucasf( 2 ); | ||
// returns 3 | ||
|
||
v = lucasf( 3 ); | ||
// returns 4 | ||
|
||
v = lucasf( 34 ); | ||
// returns 12752043 | ||
``` | ||
|
||
If `n > 34`, the function returns `NaN`, as larger [Lucas numbers][lucas-number] cannot be safely represented in [single-precision floating-point format][ieee754]. | ||
|
||
```javascript | ||
var v = lucasf( 35 ); | ||
// returns NaN | ||
``` | ||
|
||
If not provided a nonnegative integer value, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = lucasf( 3.14 ); | ||
// returns NaN | ||
|
||
v = lucasf( -1 ); | ||
// returns NaN | ||
``` | ||
|
||
If provided `NaN`, the function returns `NaN`. | ||
|
||
```javascript | ||
var v = lucasf( NaN ); | ||
// returns NaN | ||
``` | ||
|
||
</section> | ||
|
||
<!-- /.usage --> | ||
|
||
<section class="notes"> | ||
|
||
</section> | ||
|
||
<!-- /.notes --> | ||
|
||
<section class="examples"> | ||
|
||
## Examples | ||
|
||
<!-- eslint no-undef: "error" --> | ||
|
||
```javascript | ||
var linespace = require( '@stdlib/array/base/linspace' ); | ||
var logEachMap = require( '@stdlib/console/log-each-map' ); | ||
var lucasf = require( '@stdlib/math/base/special/lucasf' ); | ||
|
||
var opts = { | ||
'dtype': 'float64' | ||
}; | ||
var x = linespace( 0, 34, 35, opts ); | ||
|
||
logEachMap( 'lucasf(%d) = %d', x, lucasf ); | ||
``` | ||
|
||
</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/lucasf.h" | ||
``` | ||
|
||
#### stdlib_base_lucasf( n ) | ||
|
||
Compute the nth [Lucas number][lucas-number] as a single-precision floating-point number. | ||
|
||
```c | ||
float out = stdlib_base_lucasf( 0 ); | ||
// returns 2.0f | ||
|
||
out = stdlib_base_lucasf( 1 ); | ||
// returns 1.0f | ||
``` | ||
|
||
The function accepts the following arguments: | ||
|
||
- **n**: `[in] int32_t` input value. | ||
|
||
```c | ||
float stdlib_base_lucasf( 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/lucasf.h" | ||
#include <stdio.h> | ||
#include <stdint.h> | ||
int main( void ) { | ||
int32_t i; | ||
float v; | ||
for ( i = 0; i < 35; i++ ) { | ||
v = stdlib_base_lucasf( i ); | ||
printf( "lucasf(%d) = %lf\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"> | ||
|
||
[lucas-number]: https://en.wikipedia.org/wiki/Lucas_number | ||
|
||
[ieee754]: https://en.wikipedia.org/wiki/IEEE_754-1985 | ||
|
||
</section> | ||
|
||
<!-- /.links --> |
Oops, something went wrong.
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.
This should also be refactored to use
logEachMap