Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/special/log1pf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,10 +190,10 @@ int main( void ) {

<section class="links">

<!-- <related-links> -->

[@stdlib/math/base/special/lnf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/lnf

<!-- <related-links> -->

<!-- </related-links> -->

</section>
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/stats/base/ndarray/meanwd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ limitations under the License.
The [arithmetic mean][arithmetic-mean] is defined as

<!-- <equation class="equation" label="eq:arithmetic_mean" align="center" raw="\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i" alt="Equation for the arithmetic mean."> -->

```math
\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i
```
Expand All @@ -46,15 +46,15 @@ The [arithmetic mean][arithmetic-mean] is defined as
<section class="usage">

## Usage

```javascript
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' );

Expand Down