Skip to content

Commit 2ac13b0

Browse files
committed
docs: update docs
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 4632c5b commit 2ac13b0

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/lapack/base/dlarfg/docs/types/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ interface Routine {
3131
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
3232
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
3333
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
34-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
34+
* - otherwise, `1 <= tau <= 2`
3535
*
3636
* @param N - order of matrix `A`
37-
* @param X - overwritten by the vector `V` on exit
37+
* @param X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
3838
* @param incx - stride length for `X`
3939
* @param out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`
4040
* @returns overwrites the array `X` and `out` in place
@@ -60,10 +60,10 @@ interface Routine {
6060
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
6161
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
6262
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
63-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
63+
* - otherwise, `1 <= tau <= 2`
6464
*
6565
* @param N - order of matrix `A`
66-
* @param X - overwritten by the vector `V` on exit
66+
* @param X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
6767
* @param strideX - stride length for `X`
6868
* @param offsetX - starting index of `X`
6969
* @param out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`
@@ -93,10 +93,10 @@ interface Routine {
9393
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
9494
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
9595
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
96-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
96+
* - otherwise, `1 <= tau <= 2`
9797
*
9898
* @param N - order of matrix `A`
99-
* @param X - overwritten by the vector `V` on exit
99+
* @param X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
100100
* @param incx - stride length for `X`
101101
* @param out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`
102102
* @returns overwrites the array `X` and `out` in place

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ var dlapy2 = require( './dlapy2.js' );
3939
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
4040
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
4141
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
42-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
42+
* - otherwise, `1 <= tau <= 2`
4343
*
4444
* @private
4545
* @param {NonNegativeInteger} N - order of matrix `A`
46-
* @param {Float64Array} X - overwritten by the vector `V` on exit
46+
* @param {Float64Array} X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
4747
* @param {integer} strideX - stride length for `X`
4848
* @param {NonNegativeInteger} offsetX - starting index of `X`
4949
* @param {Float64Array} out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ var base = require( './base.js' );
3434
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
3535
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
3636
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
37-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
37+
* - otherwise, `1 <= tau <= 2`
3838
*
3939
* @param {NonNegativeInteger} N - order of matrix `A`
40-
* @param {Float64Array} X - overwritten by the vector `V` on exit
40+
* @param {Float64Array} X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
4141
* @param {integer} incx - stride length for `X`
4242
* @param {Float64Array} out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`
4343
* @returns {void} overwrites the array `X` and `out` in place

lib/node_modules/@stdlib/lapack/base/dlarfg/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
2828
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
2929
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
30-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
30+
* - otherwise, `1 <= tau <= 2`
3131
*
3232
* @module @stdlib/lapack/base/dlarfg
3333
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ var base = require( './base.js' );
3434
* - the input vector is `[alpha; x]`, where `alpha` is a scalar and `x` is a real `(n-1)`-element vector.
3535
* - the result of applying `H` to `[alpha; x]` is `[beta; 0]`, with `beta` being a scalar and the rest of the vector zeroed.
3636
* - if all elements of `x` are zero, then `tau = 0` and `H` is the identity matrix.
37-
* - otherwise, `1 <= tau <= 2` and `H` is orthogonal, i.e., `H^T * H = I`.
37+
* - otherwise, `1 <= tau <= 2`
3838
*
3939
* @param {NonNegativeInteger} N - order of matrix `A`
40-
* @param {Float64Array} X - overwritten by the vector `V` on exit
40+
* @param {Float64Array} X - overwritten by the vector `V` on exit, expects `N - 1` indexed elements
4141
* @param {integer} strideX - stride length for `X`
4242
* @param {NonNegativeInteger} offsetX - starting index of `X`
4343
* @param {Float64Array} out - array to store `alpha` and `tau`, first indexed element stores `alpha` and the second indexed element stores `tau`

0 commit comments

Comments
 (0)