Skip to content

Commit cc7c111

Browse files
committed
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into develop
2 parents 8e1a0b9 + d88905f commit cc7c111

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/random/base/weibull/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var weibull = require( '@stdlib/random/base/weibull' );
3232

3333
#### weibull( k, lambda )
3434

35-
Returns a pseudorandom number drawn from a [Weibull][weibull] distribution with scale parameter `k` and shape parameter `lambda`.
35+
Returns a pseudorandom number drawn from a [Weibull][weibull] distribution with shape parameter `k` and scale parameter `lambda`.
3636

3737
```javascript
3838
var r = weibull( 2.0, 5.0 );

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ F(x;\lambda, k) =\begin{cases}1- e^{-(x/\lambda)^k} & x \geq 0 \\ 0 & x<0\end{ca
3939

4040
<!-- </equation> -->
4141

42-
where `lambda > 0` is the [shape parameter][shape] and `k > 0` is the [scale parameter][scale].
42+
where `lambda > 0` is the [scale parameter][scale] and `k > 0` is the [shape parameter][shape].
4343

4444
</section>
4545

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ type Unary = ( x: number ) => number;
3131
*/
3232
interface CDF {
3333
/**
34-
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with scale parameter `k` and shape parameter `lambda` at a value `x`.
34+
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with shape parameter `k` and scale parameter `lambda` at a value `x`.
3535
*
3636
* ## Notes
3737
*

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/include/stdlib/stats/base/dists/weibull/cdf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with scale parameter `k` and shape parameter `lambda` at a value `x`.
30+
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with shape parameter `k` and scale parameter `lambda` at a value `x`.
3131
*/
3232
double stdlib_base_dists_weibull_cdf( const double x, const double k, const double lambda );
3333

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2828
// MAIN //
2929

3030
/**
31-
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with scale parameter `k` and shape parameter `lambda` at a value `x`.
31+
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with shape parameter `k` and scale parameter `lambda` at a value `x`.
3232
*
3333
* @param {number} x - input value
3434
* @param {PositiveNumber} k - shape parameter

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with scale parameter `k` and shape parameter `lambda` at a value `x`.
29+
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with shape parameter `k` and scale parameter `lambda` at a value `x`.
3030
*
3131
* @private
3232
* @param {number} x - input value

lib/node_modules/@stdlib/stats/base/dists/weibull/cdf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "stdlib/math/base/special/pow.h"
2323

2424
/**
25-
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with scale parameter `k` and shape parameter `lambda` at a value `x`.
25+
* Evaluates the cumulative distribution function (CDF) for a Weibull distribution with shape parameter `k` and scale parameter `lambda` at a value `x`.
2626
*
2727
* @param x input value
2828
* @param k shape parameter

lib/node_modules/@stdlib/stats/base/dists/weibull/logcdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ F(x;\lambda, k) =\begin{cases}1- e^{-(x/\lambda)^k} & x\geq0\\ 0 & x<0\end{cases
3939

4040
<!-- </equation> -->
4141

42-
where `lambda > 0` is the [shape parameter][shape] and `k > 0` is the [scale parameter][scale].
42+
where `lambda > 0` is the [scale parameter][scale] and `k > 0` is the [shape parameter][shape].
4343

4444
</section>
4545

lib/node_modules/@stdlib/stats/base/dists/weibull/median/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The [median][median] for a [Weibull][weibull-distribution] random variable is
4141

4242
<!-- </equation> -->
4343

44-
where `lambda > 0` is the [shape parameter][shape] and `k > 0` is the [scale parameter][scale].
44+
where `lambda > 0` is the [scale parameter][scale] and `k > 0` is the [shape parameter][shape].
4545

4646
</section>
4747

lib/node_modules/@stdlib/stats/base/dists/weibull/quantile/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Q(p;k,\lambda) = \lambda {(-\ln(1-p))}^{1/k}
3939

4040
<!-- </equation> -->
4141

42-
for `0 <= p < 1`, where `lambda > 0` is the [shape parameter][shape] and `k > 0` is the [scale parameter][scale].
42+
for `0 <= p < 1`, where `lambda > 0` is the [scale parameter][scale] and `k > 0` is the [shape parameter][shape].
4343

4444
</section>
4545

0 commit comments

Comments
 (0)