Skip to content

Commit 61c5411

Browse files
committed
Auto-generated commit
1 parent 0261ef2 commit 61c5411

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,6 +1248,7 @@
12481248

12491249
### Bug Fixes
12501250

1251+
- [`20d29ed`](https://github.com/stdlib-js/stdlib/commit/20d29ed3410f2ff8ff6bfadbfb0a1f5a4b7e5fde) - use `int8ndarray` type for alternative hypothesis param in `ndarray/sztest` and `ndarray/dztest`
12511252
- [`0d71e53`](https://github.com/stdlib-js/stdlib/commit/0d71e530c42bc8d7c98ad779e505fc01bd904a1f) - ensure correct `this` context when creating a new Module instance
12521253
- [`edfd675`](https://github.com/stdlib-js/stdlib/commit/edfd6756143f80e262fbc2c09c28db938fa65a29) - ensure correct `this` context when creating a new Module instance
12531254
- [`de1d0f7`](https://github.com/stdlib-js/stdlib/commit/de1d0f71bf4ae0cb747dc48b479e551f069bd58a) - ensure correct `this` context when creating a new Module instance
@@ -3539,6 +3540,7 @@ A total of 560 issues were closed in this release:
35393540

35403541
<details>
35413542

3543+
- [`20d29ed`](https://github.com/stdlib-js/stdlib/commit/20d29ed3410f2ff8ff6bfadbfb0a1f5a4b7e5fde) - **fix:** use `int8ndarray` type for alternative hypothesis param in `ndarray/sztest` and `ndarray/dztest` _(by Philipp Burckhardt)_
35423544
- [`880be90`](https://github.com/stdlib-js/stdlib/commit/880be90c78565355d6e6616def13ccf5037faeca) - **style:** add missing spaces before closing bracket _(by Philipp Burckhardt)_
35433545
- [`f40f3ed`](https://github.com/stdlib-js/stdlib/commit/f40f3ed3614de207225686772c7858c64510d1fb) - **docs:** fix parameter description _(by Philipp Burckhardt)_
35443546
- [`7be3235`](https://github.com/stdlib-js/stdlib/commit/7be3235f58dab6f5a5ac11a58ddad8d5ba2fcb1a) - **feat:** add `stats/strided/distances/dcosine-similarity` [(#9281)](https://github.com/stdlib-js/stdlib/pull/9281) _(by Nakul Krishnakumar, Athan Reines, stdlib-bot)_

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { float64ndarray, ndarray } from '@stdlib/types/ndarray';
23+
import { float64ndarray, int8ndarray, ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* Computes a one-sample Z-test for a one-dimensional double-precision floating-point ndarray.
@@ -79,7 +79,7 @@ import { float64ndarray, ndarray } from '@stdlib/types/ndarray';
7979
*
8080
* console.log( v.get().toString() );
8181
*/
82-
declare function dztest<T extends ndarray>( arrays: [ float64ndarray, T, float64ndarray, float64ndarray, float64ndarray, float64ndarray ] ): T;
82+
declare function dztest<T extends ndarray>( arrays: [ float64ndarray, T, int8ndarray, float64ndarray, float64ndarray, float64ndarray ] ): T;
8383

8484

8585
// EXPORTS //

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { float32ndarray, ndarray } from '@stdlib/types/ndarray';
23+
import { float32ndarray, int8ndarray, ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
2626
* Computes a one-sample Z-test for a one-dimensional single-precision floating-point ndarray.
@@ -79,7 +79,7 @@ import { float32ndarray, ndarray } from '@stdlib/types/ndarray';
7979
*
8080
* console.log( v.get().toString() );
8181
*/
82-
declare function sztest<T extends ndarray>( arrays: [ float32ndarray, T, float32ndarray, float32ndarray, float32ndarray, float32ndarray ] ): T;
82+
declare function sztest<T extends ndarray>( arrays: [ float32ndarray, T, int8ndarray, float32ndarray, float32ndarray, float32ndarray ] ): T;
8383

8484

8585
// EXPORTS //

0 commit comments

Comments
 (0)