You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dppequ/lib/base.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ var min = require( '@stdlib/math/base/special/min' );
30
30
/**
31
31
* Computes the row and column scaling factors intended to equilibrate a symmetric positive definite matrix `A` in packed storage and reduce it's condition number (with respect to the two-norm).
32
32
*
33
-
* @param {string} order - specifies whether `AP` is packed in row-major or column-major order
34
-
* @param {string} uplo - 'Upper' or 'Lower' triangle of `A` is stored
33
+
* @param {string} order - storage layout
34
+
* @param {string} uplo - specifies whether upper or lower triangle of `A` is stored ( `upper` or `lower` )
35
35
* @param {NonNegativeInteger} N - order of the matrix `A`
36
-
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form
36
+
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form, expectes `N * ( N + 1 ) / 2` indexed elements
37
37
* @param {integer} strideAP - stride length for `AP`
38
38
* @param {integer} offsetAP - starting index for `AP`
39
-
* @param {Float64Array} S - array to store the scale factors of `A`
39
+
* @param {Float64Array} S - array to store the scale factors of `A`, expects `N` indexed elements
40
40
* @param {integer} strideS - stride length for `S`
41
41
* @param {integer} offsetS - starting index for `S`
42
42
* @param {Float64Array} out - array to store the output
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dppequ/lib/dppequ.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,11 +30,11 @@ var base = require( './base.js' );
30
30
/**
31
31
* Computes the row and column scaling factors intended to equilibrate a symmetric positive definite matrix `A` in packed storage and reduce it's condition number (with respect to the two-norm).
32
32
*
33
-
* @param {string} order - specifies whether `AP` is packed in row-major or column-major order
34
-
* @param {string} uplo - 'Upper' or 'Lower' triangle of `A` is stored
33
+
* @param {string} order - storage layout
34
+
* @param {string} uplo - specifies whether upper or lower triangle of `A` is stored ( `upper` or `lower` )
35
35
* @param {NonNegativeInteger} N - order of the matrix `A`
36
-
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form
37
-
* @param {Float64Array} S - array to store the scale factors of `A`
36
+
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form, expectes `N * ( N + 1 ) / 2` indexed elements
37
+
* @param {Float64Array} S - array to store the scale factors of `A`, expects `N` indexed elements
38
38
* @param {Float64Array} out - array to store the output
39
39
* @throws {TypeError} first argument must be a valid order
40
40
* @throws {RangeError} third argument must be a nonnegative integer
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dppequ/lib/ndarray.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -30,13 +30,13 @@ var base = require( './base.js' );
30
30
/**
31
31
* Computes the row and column scaling factors intended to equilibrate a symmetric positive definite matrix `A` in packed storage and reduce it's condition number (with respect to the two-norm) using alternative indexing semantics.
32
32
*
33
-
* @param {string} order - specifies whether `AP` is packed in row-major or column-major order
34
-
* @param {string} uplo - 'Upper' or 'Lower' triangle of `A` is stored
33
+
* @param {string} order - storage layout
34
+
* @param {string} uplo - specifies whether upper or lower triangle of `A` is stored ( `upper` or `lower` )
35
35
* @param {NonNegativeInteger} N - order of the matrix `A`
36
-
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form
36
+
* @param {Float64Array} AP - array containing the upper or lower triangle of `A` in packed form, expectes `N * ( N + 1 ) / 2` indexed elements
37
37
* @param {integer} strideAP - stride length for `AP`
38
38
* @param {integer} offsetAP - starting index for `AP`
39
-
* @param {Float64Array} S - array to store the scale factors of `A`
39
+
* @param {Float64Array} S - array to store the scale factors of `A`, expects `N` indexed elements
40
40
* @param {integer} strideS - stride length for `S`
41
41
* @param {integer} offsetS - starting index for `S`
42
42
* @param {Float64Array} out - array to store the output
0 commit comments