Skip to content

Commit 00bfabd

Browse files
authored
docs: update description
1 parent 6a1e297 commit 00bfabd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ interface Routine {
3434
* @param N - number of columns in `A`
3535
* @param A - input matrix
3636
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
37-
* @returns index of the last row
37+
* @returns index of the last non zero row
3838
*
3939
* @example
4040
* var Float64array = require( '@stdlib/array/float64' );
@@ -54,7 +54,7 @@ interface Routine {
5454
* @param A - input matrix
5555
* @param strideA1 - stride of the first dimension of `A`
5656
* @param strideA2 - stride of the second dimension of `A`
57-
* @returns index of the last row
57+
* @returns index of the last non zero row
5858
*
5959
* @example
6060
* var Float64array = require( '@stdlib/array/float64' );
@@ -75,7 +75,7 @@ interface Routine {
7575
* @param N - number of columns in `A`
7676
* @param A - input matrix
7777
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
78-
* @returns index of the last row
78+
* @returns index of the last non zero row
7979
*
8080
* @example
8181
* var Float64array = require( '@stdlib/array/float64' );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var base = require( './base.js' );
3131
// MAIN //
3232

3333
/**
34-
* Performs a series of row interchanges on a matrix `A` using pivot indices stored in `IPIV`.
34+
* Finds the index of the last non zero row in a matrix `A`.
3535
*
3636
* @param {string} order - storage layout
3737
* @param {PositiveInteger} M - number of rows in `A`
@@ -40,7 +40,7 @@ var base = require( './base.js' );
4040
* @param {integer} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
4141
* @throws {TypeError} first argument must be a valid order
4242
* @throws {RangeError} fifth argument must be greater than or equal to max(1,N)
43-
* @returns {integer} index of the last row
43+
* @returns {integer} index of the last non zero row
4444
*
4545
* @example
4646
* var Float64array = require( '@stdlib/array/float64' );

0 commit comments

Comments
 (0)