Skip to content

Commit aeb0c03

Browse files
committed
chore: update desc
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: skipped - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 32db8e9 commit aeb0c03

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

lib/node_modules/@stdlib/stats/strided/dztest2/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
# dztest2
2424

25-
> Compute a two-sample Z-test for double-precision floating-point strided arrays.
25+
> Compute a two-sample Z-test for two double-precision floating-point strided arrays.
2626
2727
<section class="intro">
2828

@@ -48,7 +48,7 @@ var dztest2 = require( '@stdlib/stats/strided/dztest2' );
4848

4949
#### dztest2( NX, NY, alternative, alpha, diff, sigmax, x, strideX, sigmay, y, strideY, out )
5050

51-
Computes a two-sample Z-test for double-precision floating-point strided arrays.
51+
Computes a two-sample Z-test for two double-precision floating-point strided arrays.
5252

5353
```javascript
5454
var Results = require( '@stdlib/stats/base/ztest/two-sample/results/float64' );
@@ -121,7 +121,7 @@ var bool = ( out === results );
121121

122122
#### dztest2.ndarray( NX, NY, alternative, alpha, diff, sigmax, x, strideX, offsetX, sigmay, y, strideY, offsetY, out )
123123

124-
Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
124+
Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
125125

126126
```javascript
127127
var Results = require( '@stdlib/stats/base/ztest/two-sample/results/float64' );
@@ -231,7 +231,7 @@ console.log( out.toString() );
231231

232232
#### stdlib_strided_dztest2( NX, NY, alternative, alpha, diff, sigmax, \*X, strideX, sigmay, \*Y, strideY, \*results )
233233

234-
Computes a two-sample Z-test for double-precision floating-point strided arrays.
234+
Computes a two-sample Z-test for two double-precision floating-point strided arrays.
235235

236236
```c
237237
#include "stdlib/stats/base/ztest/two-sample/results/float64.h"
@@ -276,7 +276,7 @@ void stdlib_strided_dztest2( const CBLAS_INT NX, const CBLAS_INT NY, const enum
276276

277277
#### stdlib_strided_dztest2_ndarray( NX, NY, alternative, alpha, diff, sigmax, \*X, strideX, offsetX, sigmay, \*Y, strideY, offsetY, \*results )
278278

279-
Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
279+
Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
280280

281281
```c
282282
#include "stdlib/stats/base/ztest/two-sample/results/float64.h"

lib/node_modules/@stdlib/stats/strided/dztest2/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( NX, NY, alt, alpha, d, sdx, x, sx, sdy, y, sy, out )
3-
Computes a two-sample Z-test for double-precision floating-point strided
4-
arrays.
3+
Computes a two-sample Z-test for two double-precision floating-point
4+
strided arrays.
55

66
The `N` and stride parameters determine which elements in the strided
77
arrays are accessed at runtime.
@@ -69,8 +69,8 @@
6969

7070

7171
{{alias}}.ndarray( NX, NY, alt, alpha, d, sdx, x, sx, ox, sdy, y, sy, oy, out )
72-
Computes a two-sample Z-test for double-precision floating-point strided
73-
arrays using alternative indexing semantics.
72+
Computes a two-sample Z-test for two double-precision floating-point
73+
strided arrays using alternative indexing semantics.
7474

7575
While typed array views mandate a view offset based on the underlying
7676
buffer, offset parameters support indexing semantics based on starting

lib/node_modules/@stdlib/stats/strided/dztest2/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ interface Results extends BaseResults {
122122
*/
123123
interface Routine {
124124
/**
125-
* Computes a two-sample Z-test for double-precision floating-point strided arrays.
125+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
126126
*
127127
* @param NX - number of indexed elements in `x`
128128
* @param NY - number of indexed elements in `y`
@@ -155,7 +155,7 @@ interface Routine {
155155
<T extends BaseResults>( NX: number, NY: number, alternative: Alternative, alpha: number, diff: number, sigmax: number, x: Float64Array, strideX: number, sigmay: number, y: Float64Array, strideY: number, out: T ): Results;
156156

157157
/**
158-
* Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
158+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
159159
*
160160
* @param NX - number of indexed elements in `x`
161161
* @param NY - number of indexed elements in `y`
@@ -191,7 +191,7 @@ interface Routine {
191191
}
192192

193193
/**
194-
* Computes a two-sample Z-test for double-precision floating-point strided arrays.
194+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
195195
*
196196
* @param NX - number of indexed elements in `x`
197197
* @param NY - number of indexed elements in `y`

lib/node_modules/@stdlib/stats/strided/dztest2/include/stdlib/stats/strided/dztest2.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ extern "C" {
3131
#endif
3232

3333
/**
34-
* Computes a two-sample Z-test for double-precision floating-point strided arrays.
34+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
3535
*/
3636
void API_SUFFIX(stdlib_strided_dztest2)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const double alpha, const double diff, const double sigmax, const double *X, const CBLAS_INT strideX, const double sigmay, const double *Y, const CBLAS_INT strideY, struct stdlib_stats_ztest_two_sample_float64_results *results );
3737

3838
/**
39-
* Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
39+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
4040
*/
4141
void API_SUFFIX(stdlib_strided_dztest2_ndarray)( const CBLAS_INT NX, const CBLAS_INT NY, const enum STDLIB_STATS_ZTEST_ALTERNATIVE alternative, const double alpha, const double diff, const double sigmax, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double sigmay, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY, struct stdlib_stats_ztest_two_sample_float64_results *results );
4242

lib/node_modules/@stdlib/stats/strided/dztest2/lib/dztest2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var ndarray = require( './ndarray.js' );
2727
// MAIN //
2828

2929
/**
30-
* Computes a two-sample Z-test for double-precision floating-point strided arrays.
30+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
3131
*
3232
* @param {PositiveInteger} NX - number of indexed elements in `x`
3333
* @param {PositiveInteger} NY - number of indexed elements in `y`

lib/node_modules/@stdlib/stats/strided/dztest2/lib/dztest2.native.js

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

2929
/**
30-
* Computes a two-sample Z-test for double-precision floating-point strided arrays.
30+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays.
3131
*
3232
* @param {PositiveInteger} NX - number of indexed elements in `x`
3333
* @param {PositiveInteger} NY - number of indexed elements in `y`

lib/node_modules/@stdlib/stats/strided/dztest2/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute a two-sample Z-test for double-precision floating-point strided arrays.
22+
* Compute a two-sample Z-test for two double-precision floating-point strided arrays.
2323
*
2424
* @module @stdlib/stats/strided/dztest2
2525
*

lib/node_modules/@stdlib/stats/strided/dztest2/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var WORKSPACE = new Float64Array( 2 );
4444
// MAIN //
4545

4646
/**
47-
* Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
47+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
4848
*
4949
* @param {PositiveInteger} NX - number of indexed elements in `x`
5050
* @param {PositiveInteger} NY - number of indexed elements in `y`

lib/node_modules/@stdlib/stats/strided/dztest2/lib/ndarray.native.js

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

2929
/**
30-
* Computes a two-sample Z-test for double-precision floating-point strided arrays using alternative indexing semantics.
30+
* Computes a two-sample Z-test for two double-precision floating-point strided arrays using alternative indexing semantics.
3131
*
3232
* @param {PositiveInteger} NX - number of indexed elements in `x`
3333
* @param {PositiveInteger} NY - number of indexed elements in `y`

lib/node_modules/@stdlib/stats/strided/dztest2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/stats/strided/dztest2",
33
"version": "0.0.0",
4-
"description": "Compute a two-sample Z-test for double-precision floating-point strided arrays.",
4+
"description": "Compute a two-sample Z-test for two double-precision floating-point strided arrays.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)