Skip to content

Commit e94df95

Browse files
committed
Auto-generated commit
1 parent a218bdb commit e94df95

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-04-09)
7+
## Unreleased (2025-04-12)
88

99
<section class="features">
1010

@@ -34,6 +34,8 @@ A total of 2 issues were closed in this release:
3434

3535
<details>
3636

37+
- [`a9c5bd5`](https://github.com/stdlib-js/stdlib/commit/a9c5bd530e3080d8fd55586b8b05c4c3a31c60b7) - **chore:** clean-up _(by Athan Reines)_
38+
- [`85ef894`](https://github.com/stdlib-js/stdlib/commit/85ef894a07c41e917c1c729cd3a08a5d2bd96acb) - **chore:** clean-up _(by Athan Reines)_
3739
- [`c2d2e46`](https://github.com/stdlib-js/stdlib/commit/c2d2e4616d35d4f1b9ab8743edf543ca8eaa0e2b) - **chore:** fix filename _(by Athan Reines)_
3840
- [`ff8f93c`](https://github.com/stdlib-js/stdlib/commit/ff8f93c88b3dcdd9eff26eda0a785950dc50f15d) - **test:** fix missing argument _(by Athan Reines)_
3941
- [`e6f0da1`](https://github.com/stdlib-js/stdlib/commit/e6f0da1aa09685e99286e1e7efd2b5516d7e40eb) - **feat:** add C implementation for `stats/base/dists/laplace/quantile` [(#4437)](https://github.com/stdlib-js/stdlib/pull/4437) _(by Dhruv Arvind Singh, Philipp Burckhardt, stdlib-bot)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
8787
Kshitij-Dale <152467202+Kshitij-Dale@users.noreply.github.com>
8888
Lovelin Dhoni J B <100030865+lovelindhoni@users.noreply.github.com>
8989
MANI <77221000+Eternity0207@users.noreply.github.com>
90+
Mahfuza Humayra Mohona <mhmohona@gmail.com>
9091
Manik Sharma <maniksharma.rke@gmail.com>
9192
Manvith M <148960168+manvith2003@users.noreply.github.com>
9293
Marcus Fantham <mfantham@users.noreply.github.com>
@@ -119,6 +120,7 @@ Prashant Kumar Yadav <144602492+0PrashantYadav0@users.noreply.github.com>
119120
PrathamBhamare <164445568+PrathamBhamare@users.noreply.github.com>
120121
Pratik Singh <97464067+Pratik772846@users.noreply.github.com>
121122
Pratyush Kumar Chouhan <pratyushkumar0308@gmail.com>
123+
Pravesh Kunwar <praveshkunwar04@gmail.com>
122124
Priyansh Prajapati <88396544+itsspriyansh@users.noreply.github.com>
123125
Priyanshu Agarwal <113460573+AgPriyanshu18@users.noreply.github.com>
124126
Pulkit Gupta <65711278+pulkitgupta2@users.noreply.github.com>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ double out = stdlib_base_dists_laplace_quantile( 0.8, 0.0, 1.0 );
215215

216216
The function accepts the following arguments:
217217

218-
- **p**: `[in] double` probability paarmeter.
218+
- **p**: `[in] double` probability.
219219
- **mu**: `[in] double` location parameter.
220220
- **b**: `[in] double` rate parameter.
221221

benchmark/benchmark.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var opts = {
4040

4141
// MAIN //
4242

43-
bench( pkg, opts, function benchmark( b ) {
43+
bench( pkg+'::native', opts, function benchmark( b ) {
4444
var scale;
4545
var len;
4646
var mu;

include/stdlib/stats/base/dists/laplace/quantile.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
* limitations under the License.
1717
*/
1818

19-
#ifndef STDLIB_STATS_BASE_DISTS_QUANTILE_H
20-
#define STDLIB_STATS_BASE_DISTS_QUANTILE_H
19+
#ifndef STDLIB_STATS_BASE_DISTS_LAPLACE_QUANTILE_H
20+
#define STDLIB_STATS_BASE_DISTS_LAPLACE_QUANTILE_H
2121

2222
/*
2323
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
@@ -35,4 +35,4 @@ double stdlib_base_dists_laplace_quantile( const double p, const double mu, cons
3535
}
3636
#endif
3737

38-
#endif // !STDLIB_STATS_BASE_DISTS_QUANTILE_H
38+
#endif // !STDLIB_STATS_BASE_DISTS_LAPLACE_QUANTILE_H

0 commit comments

Comments
 (0)