Skip to content

Commit 5833755

Browse files
committed
Auto-generated commit
1 parent 5de5652 commit 5833755

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 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-06-19)
7+
## Unreleased (2025-06-22)
88

99
<section class="features">
1010

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

3535
<details>
3636

37+
- [`58ce62b`](https://github.com/stdlib-js/stdlib/commit/58ce62b213c03bb13d4effe9a970327d5588bf67) - **docs:** update `stats/base/dists/weibull` examples to use Greek symbols _(by Philipp Burckhardt)_
3738
- [`ff1dbe2`](https://github.com/stdlib-js/stdlib/commit/ff1dbe2dc6fcdbfd83b50f31655adbdbc1cc7681) - **feat:** add C implementation for `stats/base/dists/weibull/quantile` [(#4233)](https://github.com/stdlib-js/stdlib/pull/4233) _(by Aadish Jain, Philipp Burckhardt, stdlib-bot)_
3839
- [`1ebcfd6`](https://github.com/stdlib-js/stdlib/commit/1ebcfd618beaf055a7097c89f3794d507fd14947) - **bench:** refactor random number generation in `stats/base/dists/weibull` [(#5342)](https://github.com/stdlib-js/stdlib/pull/5342) _(by Gaurav)_
3940
- [`d88905f`](https://github.com/stdlib-js/stdlib/commit/d88905fbd9006bf223db7ce4959b46f02cf7d73e) - **docs:** fix parameter descriptions in Weibull distribution packages _(by Philipp Burckhardt)_

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ int main( void ) {
273273
k = random_uniform( 0.1, 5.0 );
274274
lambda = random_uniform( 0.1, 5.0 );
275275
y = stdlib_base_dists_weibull_quantile( p, k, lambda );
276-
printf( "p: %lf, k: %lf, lambda: %lf, Q(p;k,lambda): %lf\n", p, k, lambda, y );
276+
printf( "p: %lf, k: %lf, λ: %lf, Q(p;k,λ): %lf\n", p, k, lambda, y );
277277
}
278278
return 0;
279279
}

examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ int main( void ) {
3737
k = random_uniform( 0.1, 5.0 );
3838
lambda = random_uniform( 0.1, 5.0 );
3939
y = stdlib_base_dists_weibull_quantile( p, k, lambda );
40-
printf( "p: %lf, k: %lf, lambda: %lf, Q(p;k,lambda): %lf\n", p, k, lambda, y );
40+
printf( "p: %lf, k: %lf, λ: %lf, Q(p;k,λ): %lf\n", p, k, lambda, y );
4141
}
4242
return 0;
4343
}

0 commit comments

Comments
 (0)