Skip to content
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
wants to merge 28 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
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 Mar 20, 2025
cf606d1
fix: fixes ci issues
hrshya Mar 20, 2025
86c575b
fix: fixes ci issues
hrshya Mar 20, 2025
bda525f
resolve lint errors
hrshya Mar 21, 2025
d748e4e
update README.md
hrshya Mar 23, 2025
3e0abaf
Merge remote-tracking branch 'upstream/develop' into feat/lucasf
stdlib-bot Apr 5, 2025
2e66f7e
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/addon.c
hrshya Apr 5, 2025
5eb3aea
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya Apr 5, 2025
3de4e3c
Update lib/node_modules/@stdlib/math/base/special/lucasf/examples/c/e…
hrshya Apr 5, 2025
f99b17c
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/main.js
hrshya Apr 5, 2025
01cac68
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/index.js
hrshya Apr 5, 2025
85ec479
Update lib/node_modules/@stdlib/math/base/special/lucasf/lib/native.js
hrshya Apr 5, 2025
3cfcb39
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya Apr 5, 2025
831b894
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya Apr 5, 2025
ffce25f
Update lib/node_modules/@stdlib/math/base/special/lucasf/README.md
hrshya Apr 5, 2025
53b2641
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya Apr 5, 2025
08d30ea
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya Apr 5, 2025
158f6e4
Update lib/node_modules/@stdlib/math/base/special/lucasf/src/main.c
hrshya Apr 5, 2025
e84e9e3
Update lib/node_modules/@stdlib/math/base/special/lucasf/package.json
hrshya Apr 5, 2025
a842055
Update lib/node_modules/@stdlib/math/base/special/lucasf/docs/repl.txt
hrshya Apr 5, 2025
4f260ba
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya Apr 5, 2025
f792e18
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya Apr 5, 2025
4d923d4
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/be…
hrshya Apr 5, 2025
7cc977d
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya Apr 5, 2025
64d7387
Update lib/node_modules/@stdlib/math/base/special/lucasf/benchmark/c/…
hrshya Apr 5, 2025
06e6456
Merge branch 'feat/lucasf' of https://github.com/hrshya/stdlib into f…
hrshya Apr 6, 2025
a5c0ed6
fix: fixes suggested changes
hrshya Apr 6, 2025
dd01b77
Merge remote-tracking branch 'upstream/develop' into feat/lucasf
stdlib-bot Apr 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
243 changes: 243 additions & 0 deletions lib/node_modules/@stdlib/math/base/special/lucasf/README.md
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' );
Copy link
Contributor

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


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 -->
Loading
Loading