Skip to content

Commit 32c1b71

Browse files
committed
Auto-generated commit
1 parent b8eaa33 commit 32c1b71

File tree

122 files changed

+258
-217
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+258
-217
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2912,6 +2912,10 @@ A total of 17 people contributed to this release. Thank you to the following con
29122912

29132913
<details>
29142914

2915+
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_
2916+
- [`2965f8f`](https://github.com/stdlib-js/stdlib/commit/2965f8f4d1469ed76c7d9c150b39a87b62d73fbd) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2917+
- [`ed5c4cc`](https://github.com/stdlib-js/stdlib/commit/ed5c4cccc06ad98f4de90310bf24a5a373761b43) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2918+
- [`90e96d0`](https://github.com/stdlib-js/stdlib/commit/90e96d01b7a32ec3b71caf3e5f57528338199a8f) - **chore:** minor clean-up _(by Philipp Burckhardt)_
29152919
- [`04fda1b`](https://github.com/stdlib-js/stdlib/commit/04fda1b6f333b6ac26d2f4b65d903d25701e6877) - **refactor:** update `stats/base/dnanrange` native addon from C++ to C [(#4163)](https://github.com/stdlib-js/stdlib/pull/4163) _(by Vivek maurya)_
29162920
- [`70dde47`](https://github.com/stdlib-js/stdlib/commit/70dde4759fdc94408dc4ee058cd83e6edf6ebda7) - **refactor:** update `stats/base/dnanmeanwd` native addon from C++ to C [(#4157)](https://github.com/stdlib-js/stdlib/pull/4157) _(by Neeraj Pathak)_
29172921
- [`b7867cb`](https://github.com/stdlib-js/stdlib/commit/b7867cbb3a4fc453e19203794402c36f19b264fd) - **chore:** minor clean-up _(by Philipp Burckhardt)_

base/dists/bernoulli/mode/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@
7373
]
7474
}
7575
]
76-
}
76+
}

base/dists/cosine/kurtosis/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the excess kurtosis of a raised cosine distribution'
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = kurtosis( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/logpdf/test/test.logpdf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ tape( 'the function evaluates the logpdf for `x` given positive `mu`', function
141141
s = positiveMean.s;
142142
for ( i = 0; i < x.length; i++ ) {
143143
y = logpdf( x[i], mu[i], s[i] );
144-
if ( expected[i] !== null) {
144+
if ( expected[i] !== null ) {
145145
if ( y === expected[i] ) {
146146
t.equal( y, expected[i], 'x: '+x[i]+', mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
147147
} else {

base/dists/cosine/mean/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the expected value of a raised cosine distribution',
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = mean( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/median/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the median of a raised cosine distribution', functio
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = median( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/mode/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the mode of a raised cosine distribution', function
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = mode( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/quantile/test/test.quantile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ tape( 'the function evaluates the quantile function at `p` given positive `mu`',
120120
s = positiveMean.s;
121121
for ( i = 0; i < p.length; i++ ) {
122122
y = quantile( p[i], mu[i], s[i] );
123-
if ( expected[i] !== null) {
123+
if ( expected[i] !== null ) {
124124
if ( y === expected[i] ) {
125125
t.equal( y, expected[i], 'p: '+p[i]+', mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
126126
} else {

base/dists/cosine/skewness/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the skewness of a raised cosine distribution', funct
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = skewness( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/stdev/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the standard deviation of a raised cosine distributi
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = stdev( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/cosine/variance/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the variance of a raised cosine distribution', funct
9191
s = data.s;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = variance( mu[i], s[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', s: '+s[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/exponential/mode/test/test.native.js

+1-11
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ var resolve = require( 'path' ).resolve;
2424
var tape = require( 'tape' );
2525
var tryRequire = require( '@stdlib/utils/try-require' );
2626
var isnan = require( '@stdlib/math/base/assert/is-nan' );
27-
var abs = require( '@stdlib/math/base/special/abs' );
2827
var NINF = require( '@stdlib/constants/float64/ninf' );
29-
var EPS = require( '@stdlib/constants/float64/eps' );
3028

3129

3230
// VARIABLES //
@@ -71,22 +69,14 @@ tape( 'if provided a rate parameter `lambda` that is not a nonnegative number, t
7169
tape( 'the function returns the mode of an exponential distribution', opts, function test( t ) {
7270
var expected;
7371
var lambda;
74-
var delta;
75-
var tol;
7672
var i;
7773
var y;
7874

7975
expected = data.expected;
8076
lambda = data.lambda;
8177
for ( i = 0; i < expected.length; i++ ) {
8278
y = mode( lambda[i] );
83-
if ( y === expected[ i ] ) {
84-
t.equal( y, expected[i], 'lambda: '+lambda[i]+', y: '+y+', expected: '+expected[i] );
85-
} else {
86-
delta = abs( y - expected[ i ] );
87-
tol = 2.0 * EPS * abs( expected[ i ] );
88-
t.ok( delta <= tol, 'within tolerance. lambda: '+lambda[i]+'. y: '+y+'. E: '+expected[ i ]+'. Δ: '+delta+'. tol: '+tol+'.' );
89-
}
79+
t.equal( y, expected[i], 'lambda: '+lambda[i]+', y: '+y+', expected: '+expected[i] );
9080
}
9181
t.end();
9282
});

base/dists/f/entropy/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ double out = stdlib_base_dists_f_entropy( 3.0, 7.0 );
182182
The function accepts the following arguments:
183183

184184
- **d1**: `[in] double` numerator degrees of freedom.
185-
- **d2**: `[in] double` maximum support.
185+
- **d2**: `[in] double` denominator degrees of freedom.
186186

187187
```c
188188
double stdlib_base_dists_f_entropy( const double d1, const double d2 );

base/dists/f/pdf/lib/ibeta_power_terms.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ function ibetaPowerTerms( a, b, x, y, normalized ) {
226226
result *= pow( p1 * b2, b );
227227
} else {
228228
l2 += l1 + ln( result );
229-
if (l2 >= MAX_LN) {
229+
if ( l2 >= MAX_LN ) {
230230
return NaN;
231231
}
232232
result = exp( l2 );

base/dists/frechet/entropy/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the differential entropy of a Fréchet distribution'
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = entropy( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/kurtosis/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the excess kurtosis of a Fréchet distribution', fun
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = kurtosis( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/mean/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the expected value of a Fréchet distribution', func
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = mean( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/median/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the median of a Fréchet distribution', function tes
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = median( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/mode/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the mode of a Fréchet distribution', function test(
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = mode( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/skewness/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the skewness of a Fréchet distribution', function t
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = skewness( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/stdev/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the standard deviation of a Fréchet distribution',
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = stdev( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/frechet/variance/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ tape( 'the function returns the variance of a Fréchet distribution', function t
114114
s = data.s;
115115
for ( i = 0; i < alpha.length; i++ ) {
116116
y = variance( alpha[i], s[i], 0.0 );
117-
if ( expected[i] !== null) {
117+
if ( expected[i] !== null ) {
118118
if ( y === expected[i] ) {
119119
t.equal( y, expected[i], 'alpha:'+alpha[i]+', s: '+s[i]+', m: 0, y: '+y+', expected: '+expected[i] );
120120
} else {

base/dists/gumbel/entropy/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the differential entropy of a Gumbel distribution',
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = entropy( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/kurtosis/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the excess kurtosis of a Gumbel distribution', funct
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = kurtosis( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/logpdf/test/test.logpdf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ tape( 'the function evaluates the logpdf for `x` given positive `mu`', function
112112
beta = positiveMean.beta;
113113
for ( i = 0; i < x.length; i++ ) {
114114
y = logpdf( x[i], mu[i], beta[i] );
115-
if ( expected[i] !== null) {
115+
if ( expected[i] !== null ) {
116116
if ( y === expected[i] ) {
117117
t.equal( y, expected[i], 'x: '+x[i]+', mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
118118
} else {

base/dists/gumbel/mean/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the mean of a Gumbel distribution', function test( t
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = mean( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/median/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the median of a Gumbel distribution', function test(
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = median( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/mode/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the mode of a Gumbel distribution', function test( t
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = mode( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/pdf/test/test.pdf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ tape( 'the function evaluates the pdf for `x` given positive `mu`', function tes
112112
beta = positiveMean.beta;
113113
for ( i = 0; i < x.length; i++ ) {
114114
y = pdf( x[i], mu[i], beta[i] );
115-
if ( expected[i] !== null) {
115+
if ( expected[i] !== null ) {
116116
if ( y === expected[i] ) {
117117
t.equal( y, expected[i], 'x: '+x[i]+', mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
118118
} else {

base/dists/gumbel/quantile/test/test.quantile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ tape( 'the function evaluates the quantile function at `p` given positive `mu`',
108108
beta = positiveMean.beta;
109109
for ( i = 0; i < p.length; i++ ) {
110110
y = quantile( p[i], mu[i], beta[i] );
111-
if ( expected[i] !== null) {
111+
if ( expected[i] !== null ) {
112112
if ( y === expected[i] ) {
113113
t.equal( y, expected[i], 'p: '+p[i]+', mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
114114
} else {

base/dists/gumbel/skewness/test/test.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ tape( 'if provided a nonpositive `beta`, the function returns `NaN`', function t
7272
});
7373

7474
tape( 'the function returns `~1.14` as the skewness of a Gumbel distribution ', function test( t ) {
75-
var a;
76-
var b;
75+
var beta;
76+
var mu;
7777
var i;
7878
var v;
7979

8080
for ( i = 0; i < 10; i++ ) {
81-
a = ( randu()*10.0 );
82-
b = ( randu()*10.0 ) + a;
83-
v = skewness( a, b );
81+
mu = ( randu()*10.0 );
82+
beta = ( randu()*10.0 ) + 1.0;
83+
v = skewness( mu, beta );
8484
t.equal( v, 1.1395470994046488, 'returns ~1.14' );
8585
}
8686
t.end();

base/dists/gumbel/stdev/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the standard deviation of a Gumbel distribution', fu
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = stdev( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/variance/test/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ tape( 'the function returns the variance of a Gumbel distribution', function tes
9191
beta = data.beta;
9292
for ( i = 0; i < mu.length; i++ ) {
9393
y = variance( mu[i], beta[i] );
94-
if ( expected[i] !== null) {
94+
if ( expected[i] !== null ) {
9595
if ( y === expected[i] ) {
9696
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
9797
} else {

base/dists/gumbel/variance/test/test.native.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ tape( 'the function returns the variance of a Gumbel distribution', opts, functi
100100
beta = data.beta;
101101
for ( i = 0; i < mu.length; i++ ) {
102102
y = variance( mu[i], beta[i] );
103-
if ( expected[i] !== null) {
103+
if ( expected[i] !== null ) {
104104
if ( y === expected[i] ) {
105105
t.equal( y, expected[i], 'mu:'+mu[i]+', beta: '+beta[i]+', y: '+y+', expected: '+expected[i] );
106106
} else {

base/dists/kumaraswamy/median/README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ for ( i = 0; i < 10; i++ ) {
171171

172172
#### stdlib_base_dists_kumaraswamy_median( a, b )
173173

174-
Evaluates the [median][median] of a [Kumaraswamy][kumaraswamy-distribution] distribution with shape parameters a and b.
174+
Returns the [median][median] of a [Kumaraswamy's double bounded][kumaraswamy-distribution] distribution with first shape parameter `a` and second shape parameter `b`.
175175

176176
```c
177177
double out = stdlib_base_dists_kumaraswamy_median( 2.0, 3.0 );
@@ -180,8 +180,8 @@ double out = stdlib_base_dists_kumaraswamy_median( 2.0, 3.0 );
180180

181181
The function accepts the following arguments:
182182

183-
- **a**: `[in] double` shape parameter.
184-
- **b**: `[in] double` shape parameter.
183+
- **a**: `[in] double` first shape parameter.
184+
- **b**: `[in] double` second shape parameter.
185185

186186
```c
187187
double stdlib_base_dists_kumaraswamy_median( const double a, const double b );
@@ -207,7 +207,6 @@ double stdlib_base_dists_kumaraswamy_median( const double a, const double b );
207207
208208
```c
209209
#include "stdlib/stats/base/dists/kumaraswamy/median.h"
210-
#include "stdlib/constants/float64/eps.h"
211210
#include <stdlib.h>
212211
#include <stdio.h>
213212

base/dists/kumaraswamy/median/benchmark/benchmark.native.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ var pkg = require( './../package.json' ).name;
3232

3333
// VARIABLES //
3434

35-
var pdf = tryRequire( resolve( __dirname, './../lib/native.js' ) );
35+
var median = tryRequire( resolve( __dirname, './../lib/native.js' ) );
3636
var opts = {
37-
'skip': ( pdf instanceof Error )
37+
'skip': ( median instanceof Error )
3838
};
3939

4040

@@ -57,7 +57,7 @@ bench( pkg+'::native', opts, function benchmark( b ) {
5757

5858
b.tic();
5959
for ( i = 0; i < b.iterations; i++ ) {
60-
y = pdf( alpha[ i % len ], beta[ i % len ] );
60+
y = median( alpha[ i % len ], beta[ i % len ] );
6161
if ( isnan( y ) ) {
6262
b.fail( 'should not return NaN' );
6363
}

base/dists/kumaraswamy/median/benchmark/c/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ run: $(c_targets)
143143
clean:
144144
$(QUIET) -rm -f *.o *.out
145145

146-
.PHONY: clean
146+
.PHONY: clean

0 commit comments

Comments
 (0)