Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 13, 2024
1 parent e51c57a commit 04f625a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4988,6 +4988,7 @@ A total of 29 people contributed to this release. Thank you to the following con

<details>

- [`b4cde28`](https://github.com/stdlib-js/stdlib/commit/b4cde28b465725e0d2f2e84757a4a533834503c7) - **docs:** fix function name [(#2580)](https://github.com/stdlib-js/stdlib/pull/2580) _(by Gunj Joshi)_
- [`337adbf`](https://github.com/stdlib-js/stdlib/commit/337adbf93822a5ab1adb5256594855e344e9414c) - **feat:** add C implementation for `math/base/special/digamma` [(##2533)](#2533 ) _(by Gunj Joshi)_
- [`dbef328`](https://github.com/stdlib-js/stdlib/commit/dbef3280431240b7a2cc358a54923481115adb24) - **feat:** add C implementation for `math/base/special/round10` _(by Gunj Joshi)_
- [`74f3c08`](https://github.com/stdlib-js/stdlib/commit/74f3c08113fa7555d9010d3cb814f7a8ea7ea47e) - **feat:** add `dii_d` in `math/base/napi/ternary` [(#2546)](https://github.com/stdlib-js/stdlib/pull/2546) _(by Gunj Joshi, Athan Reines)_
Expand Down
8 changes: 4 additions & 4 deletions base/special/gamma-lanczos-sum-expg-scaled/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,15 @@ for ( i = 0; i < x.length; i++ ) {
#include "stdlib/math/base/special/gamma_lanczos_sum_expg_scaled.h"
```

#### gamma_lanczos_sum_expg_scaled( x )
#### stdlib_base_gamma_lanczos_sum_expg_scaled( x )

Calculates the Lanczos sum for the approximation of the [gamma function][gamma-function] (scaled by `exp(-g)`, where `g = 10.900511`).

```c
double out = gamma_lanczos_sum_expg_scaled( 4.0 );
double out = stdlib_base_gamma_lanczos_sum_expg_scaled( 4.0 );
// returns ~0.018

out = gamma_lanczos_sum_expg_scaled( -1.5 );
out = stdlib_base_gamma_lanczos_sum_expg_scaled( -1.5 );
// returns ~25.337
```

Expand All @@ -159,7 +159,7 @@ The function accepts the following arguments:
- **x**: `[in] double` input value.

```c
double gamma_lanczos_sum_expg_scaled( const double x );
double stdlib_base_gamma_lanczos_sum_expg_scaled( const double x );
```
</section>
Expand Down

0 comments on commit 04f625a

Please sign in to comment.