Skip to content

Commit e29ef04

Browse files
committed
Auto-generated commit
1 parent 5103fd1 commit e29ef04

File tree

8 files changed

+10
-7
lines changed

8 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3479,6 +3479,8 @@ A total of 557 issues were closed in this release:
34793479

34803480
<details>
34813481

3482+
- [`7d92c02`](https://github.com/stdlib-js/stdlib/commit/7d92c02e873280404a69091107eec08afc1cbb74) - **docs:** fix typos and missing require in mediansorted packages _(by Philipp Burckhardt)_
3483+
- [`fd40621`](https://github.com/stdlib-js/stdlib/commit/fd40621d93fac33ff8a483754f3aa2c8c929f1b9) - **docs:** fix typos and inconsistencies in ndarray stats READMEs _(by Philipp Burckhardt)_
34823484
- [`e63bbbd`](https://github.com/stdlib-js/stdlib/commit/e63bbbd535150fb694d287d97adbb5d606bd42fe) - **docs:** update namespace table of contents [(#8639)](https://github.com/stdlib-js/stdlib/pull/8639) _(by stdlib-bot)_
34833485
- [`c0b3cef`](https://github.com/stdlib-js/stdlib/commit/c0b3cef48f22a420738a91fae2be1e327409ff8e) - **feat:** add `stats/base/ndarray/smediansorted` [(#8635)](https://github.com/stdlib-js/stdlib/pull/8635) _(by Divyanshu, Athan Reines)_
34843486
- [`59bea21`](https://github.com/stdlib-js/stdlib/commit/59bea210b0588dcd33452b65d93f9acf58bd4725) - **feat:** add `stats/base/ndarray/dmediansorted` [(#8637)](https://github.com/stdlib-js/stdlib/pull/8637) _(by Divyanshu, Athan Reines)_

base/ndarray/dmediansorted/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import { float64ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
26-
* Computes the median value of a sorted one-dimensional single-precision floating-point ndarray.
26+
* Computes the median value of a sorted one-dimensional double-precision floating-point ndarray.
2727
*
2828
* @param arrays - array-like object containing a sorted input ndarray
2929
* @returns median value

base/ndarray/dmediansorted/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import dmediansorted = require( './index' );
2424

2525
// TESTS //
2626

27-
// The function returns a ndarray...
27+
// The function returns a number...
2828
{
2929
const x = zeros( [ 10 ], {
3030
'dtype': 'float64'

base/ndarray/meankbn2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# meankbn2
2222

23-
> Compute the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using a second-order Kahan–Babuška algorithm.
23+
> Compute the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using a second-order iterative Kahan–Babuška algorithm.
2424
2525
<section class="intro">
2626

@@ -53,7 +53,7 @@ var meankbn2 = require( '@stdlib/stats/base/ndarray/meankbn2' );
5353

5454
#### meankbn2( arrays )
5555

56-
Computes the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using a second-order Kahan–Babuška algorithm.
56+
Computes the [arithmetic mean][arithmetic-mean] of a one-dimensional ndarray using a second-order iterative Kahan–Babuška algorithm.
5757

5858
```javascript
5959
var ndarray = require( '@stdlib/ndarray/base/ctor' );

base/ndarray/minsorted/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ The function has the following parameters:
7676
<!-- eslint no-undef: "error" -->
7777

7878
```javascript
79-
var linspace = require( '@stdlib/array/base/linspace' );
79+
var linspace = require( '@stdlib/array/linspace' );
8080
var ndarray = require( '@stdlib/ndarray/base/ctor' );
8181
var ndarray2array = require( '@stdlib/ndarray/to-array' );
8282
var minsorted = require( '@stdlib/stats/base/ndarray/minsorted' );

base/ndarray/smeanlipw/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# smeanlipw
2222

23-
> Compute the [arithmetic mean][arithmetic-mean] of a one-dimensional double-precision floating-point ndarray using a one-pass trial mean algorithm with pairwise summation.
23+
> Compute the [arithmetic mean][arithmetic-mean] of a one-dimensional single-precision floating-point ndarray using a one-pass trial mean algorithm with pairwise summation.
2424
2525
<section class="intro">
2626

base/ndarray/smediansorted/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import smediansorted = require( './index' );
2424

2525
// TESTS //
2626

27-
// The function returns a ndarray...
27+
// The function returns a number...
2828
{
2929
const x = zeros( [ 10 ], {
3030
'dtype': 'float32'

base/ndarray/smediansorted/lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
* @module @stdlib/stats/base/ndarray/smediansorted
2525
*
2626
* @example
27+
* var Float32Array = require( '@stdlib/array/float32' );
2728
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
2829
* var smediansorted = require( '@stdlib/stats/base/ndarray/smediansorted' );
2930
*

0 commit comments

Comments
 (0)