Skip to content

Commit 5b87ba7

Browse files
committed
docs: add description
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - 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: na - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 37b6731 commit 5b87ba7

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/lapack/base/dppequ/lib/base.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ var min = require( '@stdlib/math/base/special/min' );
3030
/**
3131
* 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).
3232
*
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` )
3535
* @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
3737
* @param {integer} strideAP - stride length for `AP`
3838
* @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
4040
* @param {integer} strideS - stride length for `S`
4141
* @param {integer} offsetS - starting index for `S`
4242
* @param {Float64Array} out - array to store the output

lib/node_modules/@stdlib/lapack/base/dppequ/lib/dppequ.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ var base = require( './base.js' );
3030
/**
3131
* 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).
3232
*
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` )
3535
* @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
3838
* @param {Float64Array} out - array to store the output
3939
* @throws {TypeError} first argument must be a valid order
4040
* @throws {RangeError} third argument must be a nonnegative integer

lib/node_modules/@stdlib/lapack/base/dppequ/lib/ndarray.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ var base = require( './base.js' );
3030
/**
3131
* 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.
3232
*
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` )
3535
* @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
3737
* @param {integer} strideAP - stride length for `AP`
3838
* @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
4040
* @param {integer} strideS - stride length for `S`
4141
* @param {integer} offsetS - starting index for `S`
4242
* @param {Float64Array} out - array to store the output

0 commit comments

Comments
 (0)