Skip to content

Commit

Permalink
docs: fix offset types
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jul 31, 2024
1 parent d994cd1 commit 3f432e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions lib/node_modules/@stdlib/lapack/base/slacpy/lib/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ var min = require( '@stdlib/math/base/special/fast/min' );
* @param {Float32Array} A - input matrix
* @param {integer} strideA1 - stride of the first dimension of `A`
* @param {integer} strideA2 - stride of the second dimension of `A`
* @param {PositiveInteger} offsetA - starting index for `A`
* @param {NonNegativeInteger} offsetA - starting index for `A`
* @param {Float32Array} B - output matrix
* @param {integer} strideB1 - stride of the first dimension of `B`
* @param {integer} strideB2 - stride of the second dimension of `B`
* @param {PositiveInteger} offsetB - starting index for `B`
* @param {NonNegativeInteger} offsetB - starting index for `B`
* @returns {Float32Array} `B`
*
* @example
Expand Down Expand Up @@ -173,11 +173,11 @@ function copyAll( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2, o
* @param {Float32Array} A - input matrix
* @param {integer} strideA1 - stride of the first dimension of `A`
* @param {integer} strideA2 - stride of the second dimension of `A`
* @param {PositiveInteger} offsetA - starting index for `A`
* @param {NonNegativeInteger} offsetA - starting index for `A`
* @param {Float32Array} B - output matrix
* @param {integer} strideB1 - stride of the first dimension of `B`
* @param {integer} strideB2 - stride of the second dimension of `B`
* @param {PositiveInteger} offsetB - starting index for `B`
* @param {NonNegativeInteger} offsetB - starting index for `B`
* @returns {Float32Array} `B`
*
* @example
Expand Down Expand Up @@ -289,11 +289,11 @@ function copyUpper( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
* @param {Float32Array} A - input matrix
* @param {integer} strideA1 - stride of the first dimension of `A`
* @param {integer} strideA2 - stride of the second dimension of `A`
* @param {PositiveInteger} offsetA - starting index for `A`
* @param {NonNegativeInteger} offsetA - starting index for `A`
* @param {Float32Array} B - output matrix
* @param {integer} strideB1 - stride of the first dimension of `B`
* @param {integer} strideB2 - stride of the second dimension of `B`
* @param {PositiveInteger} offsetB - starting index for `B`
* @param {NonNegativeInteger} offsetB - starting index for `B`
* @returns {Float32Array} `B`
*
* @example
Expand Down Expand Up @@ -409,11 +409,11 @@ function copyLower( M, N, A, strideA1, strideA2, offsetA, B, strideB1, strideB2,
* @param {Float32Array} A - input matrix
* @param {integer} strideA1 - stride of the first dimension of `A`
* @param {integer} strideA2 - stride of the second dimension of `A`
* @param {PositiveInteger} offsetA - starting index for `A`
* @param {NonNegativeInteger} offsetA - starting index for `A`
* @param {Float32Array} B - output matrix
* @param {integer} strideB1 - stride of the first dimension of `B`
* @param {integer} strideB2 - stride of the second dimension of `B`
* @param {PositiveInteger} offsetB - starting index for `B`
* @param {NonNegativeInteger} offsetB - starting index for `B`
* @returns {Float32Array} `B`
*
* @example
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/lapack/base/slacpy/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ var base = require( './base.js' );
* @param {Float32Array} A - input matrix
* @param {integer} strideA1 - stride of the first dimension of `A`
* @param {integer} strideA2 - stride of the second dimension of `A`
* @param {PositiveInteger} offsetA - starting index for `A`
* @param {NonNegativeInteger} offsetA - starting index for `A`
* @param {Float32Array} B - output matrix
* @param {integer} strideB1 - stride of the first dimension of `B`
* @param {integer} strideB2 - stride of the second dimension of `B`
* @param {PositiveInteger} offsetB - starting index for `B`
* @param {NonNegativeInteger} offsetB - starting index for `B`
* @returns {Float32Array} `B`
*
* @example
Expand Down

0 comments on commit 3f432e5

Please sign in to comment.