diff --git a/CHANGELOG.md b/CHANGELOG.md index 453f6c103..df259ef0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4988,6 +4988,7 @@ A total of 29 people contributed to this release. Thank you to the following con
+- [`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)_ diff --git a/base/special/gamma-lanczos-sum-expg-scaled/README.md b/base/special/gamma-lanczos-sum-expg-scaled/README.md index 572af7635..19ded582f 100644 --- a/base/special/gamma-lanczos-sum-expg-scaled/README.md +++ b/base/special/gamma-lanczos-sum-expg-scaled/README.md @@ -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 ``` @@ -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 ); ```