diff --git a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md index db443af26b2c..32d7c793b920 100644 --- a/lib/node_modules/@stdlib/math/base/special/log1pf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/log1pf/README.md @@ -190,10 +190,10 @@ int main( void ) { diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md b/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md index ff937c4496ec..925d5fde5bb2 100644 --- a/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md +++ b/lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md @@ -27,7 +27,7 @@ limitations under the License. The [arithmetic mean][arithmetic-mean] is defined as - + ```math \mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i ``` @@ -46,7 +46,7 @@ The [arithmetic mean][arithmetic-mean] is defined as
## Usage - + ```javascript var meanwd = require( '@stdlib/stats/base/ndarray/meanwd' ); ``` @@ -54,7 +54,7 @@ var meanwd = require( '@stdlib/stats/base/ndarray/meanwd' ); #### meanwd( arrays ) Computes the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using Welford's algorithm. - + ```javascript var ndarray = require( '@stdlib/ndarray/base/ctor' );