Skip to content

Commit 996cc82

Browse files
committed
chore: spell check
--- 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: na - task: lint_repl_help status: passed - 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 f5f0213 commit 996cc82

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

lib/node_modules/@stdlib/lapack/base/dgttrf/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dgttrf
2222

23-
> Compute an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
23+
> Compute an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var dgttrf = require( '@stdlib/lapack/base/dgttrf' );
3232

3333
#### dgttrf( N, DL, D, DU, DU2, IPIV )
3434

35-
Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
35+
Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
3636

3737
```javascript
3838
var Float64Array = require( '@stdlib/array/float64' );
@@ -95,7 +95,7 @@ dgttrf( 3, DL, D, DU, DU2, IPIV );
9595

9696
#### dgttrf.ndarray( N, DL, sdl, odl, D, sd, od, DU, sdu, odu, DU2, sdu2, odu2, IPIV, si, oi )
9797

98-
Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
98+
Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
9999

100100
```javascript
101101
var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/lapack/base/dgttrf/docs/repl.txt

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

22
{{alias}}( N, DL, D, DU, DU2, IPIV )
3-
Computes an `LU` factorization of a real tridiagonal matrix `A` using
3+
Computes an `LU` factorization of a real tri diagonal matrix `A` using
44
elimination with partial pivoting and row interchanges.
55

66
Indexing is relative to the first index. To introduce an offset, use typed
@@ -92,7 +92,7 @@
9292

9393

9494
{{alias}}.ndarray( N,DL,sdl,odl,D,sd,od,DU,sdu,odu,DU2,sdu2,odu2,IPIV,si,oi )
95-
Computes an `LU` factorization of a real tridiagonal matrix `A` using
95+
Computes an `LU` factorization of a real tri diagonal matrix `A` using
9696
elimination with partial pivoting and row interchanges and alternative
9797
indexing semantics.
9898

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ type StatusCode = number;
3636
*/
3737
interface Routine {
3838
/**
39-
* Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
39+
* Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
4040
*
4141
* ## Notes
4242
*
@@ -74,7 +74,7 @@ interface Routine {
7474
( N: number, DL: Float64Array, D: Float64Array, DU: Float64Array, DU2: Float64Array, IPIV: Int32Array ): StatusCode;
7575

7676
/**
77-
* Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
77+
* Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
7878
*
7979
* ## Notes
8080
*
@@ -120,7 +120,7 @@ interface Routine {
120120
}
121121

122122
/**
123-
* LAPACK routine to compute an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
123+
* LAPACK routine to compute an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
124124
*
125125
* ## Notes
126126
*

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var abs = require( '@stdlib/math/base/special/abs' );
2626
// MAIN //
2727

2828
/**
29-
* Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
29+
* Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
3030
*
3131
* ## Notes
3232
*
@@ -104,7 +104,7 @@ function dgttrf( N, DL, sdl, odl, D, sd, od, DU, sdu, odu, DU2, sdu2, odu2, IPIV
104104

105105
// Initialise ith element of DU2 as 0
106106
for ( i = 0; i < N-2; i++ ) {
107-
DU2[ idu + dui ] = 0;
107+
DU2[ idu + (sdu*i) ] = 0;
108108
}
109109

110110
for ( i = 0; i < N-2; i++ ) {

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

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

2929
/**
30-
* Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
30+
* Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
3131
*
3232
* ## Notes
3333
*

lib/node_modules/@stdlib/lapack/base/dgttrf/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-
* LAPACK routine to compute an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges.
22+
* LAPACK routine to compute an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges.
2323
*
2424
* @module @stdlib/lapack/base/dgttrf
2525
*

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

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

2929
/**
30-
* Computes an `LU` factorization of a real tridiagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
30+
* Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
3131
*
3232
* ## Notes
3333
*

0 commit comments

Comments
 (0)