Skip to content

Commit 49c2e08

Browse files
committed
Auto-generated commit
1 parent 6905500 commit 49c2e08

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.editorconfig

-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ indent_style = tab
8686
[*.{f,f.txt}]
8787
indent_style = space
8888
indent_size = 2
89-
insert_final_newline = false
9089

9190
# Set properties for shell files:
9291
[*.{sh,sh.txt}]

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-01-16)
7+
## Unreleased (2025-01-17)
88

99
<section class="packages">
1010

@@ -6943,8 +6943,10 @@ A total of 19 people contributed to this release. Thank you to the following con
69436943

69446944
<details>
69456945

6946+
- [`7bab2c6`](https://github.com/stdlib-js/stdlib/commit/7bab2c62de11b478cd09f0e2c3b585be45895fbd) - **docs:** increase success probability in examples _(by Athan Reines)_
69466947
- [`ad4a4ce`](https://github.com/stdlib-js/stdlib/commit/ad4a4ce3abd038def188a7a617d9d58036333c10) - **docs:** refactor examples of `stats/base/dnanmax` [(#4781)](https://github.com/stdlib-js/stdlib/pull/4781) _(by Aayush Khanna, Athan Reines)_
69476948
- [`4d14525`](https://github.com/stdlib-js/stdlib/commit/4d14525247db6d9450796b24fd5da28d7404011b) - **feat:** add C implementation for `stats/base/dists/degenerate/quantile` [(#4587)](https://github.com/stdlib-js/stdlib/pull/4587) _(by Karan Anand, Philipp Burckhardt, stdlib-bot)_
6949+
- [`a0d5981`](https://github.com/stdlib-js/stdlib/commit/a0d59812ee0aa7f18f7b7b4c2d93d45c80394bf4) - **style:** add missing space _(by Athan Reines)_
69486950
- [`84a04bb`](https://github.com/stdlib-js/stdlib/commit/84a04bb594e2d47d518198cfb4778472dd046e1c) - **feat:** add C implementation of `stats/base/dists/degenerate/logpdf` [(#4450)](https://github.com/stdlib-js/stdlib/pull/4450) _(by Vinit Pandit, stdlib-bot)_
69496951
- [`ba3d6e8`](https://github.com/stdlib-js/stdlib/commit/ba3d6e8c6cba467455f4f8f6b32edb6c0ddc5dc5) - **feat:** add C Implementation for `stats/base/dists/arcsine/stdev` [(#4241)](https://github.com/stdlib-js/stdlib/pull/4241) _(by Karan Anand, stdlib-bot, Philipp Burckhardt)_
69506952
- [`3afe09e`](https://github.com/stdlib-js/stdlib/commit/3afe09e623a0bfd0beb8f7e5aa3de7303b52ed48) - **feat:** add C implementation for `stats/base/dists/arcsine/mode` [(#4236)](https://github.com/stdlib-js/stdlib/pull/4236) _(by Karan Anand, Philipp Burckhardt, stdlib-bot)_

base/dists/degenerate/logpdf/include/stdlib/stats/base/dists/degenerate/logpdf.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
/**
3030
* Evaluates the natural logarithm of the probability density function (logPDF) for a degenerate distribution centered at `mu`.
3131
*/
32-
double stdlib_base_dists_degenerate_logpdf( const double x, const double mu);
32+
double stdlib_base_dists_degenerate_logpdf( const double x, const double mu );
3333

3434
#ifdef __cplusplus
3535
}

base/dnanmax/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ var bernoulli = require( '@stdlib/random/base/bernoulli' );
135135
var dnanmax = require( '@stdlib/stats/base/dnanmax' );
136136

137137
function rand() {
138-
if ( bernoulli( 0.2 ) < 1 ) {
138+
if ( bernoulli( 0.8 ) < 1 ) {
139139
return NaN;
140140
}
141141
return uniform( -50.0, 50.0 );

base/dnanmax/examples/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var bernoulli = require( '@stdlib/random/base/bernoulli' );
2424
var dnanmax = require( './../lib' );
2525

2626
function rand() {
27-
if ( bernoulli( 0.2 ) < 1 ) {
27+
if ( bernoulli( 0.8 ) < 1 ) {
2828
return NaN;
2929
}
3030
return uniform( -50.0, 50.0 );

0 commit comments

Comments
 (0)