File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
lib/node_modules/@stdlib/lapack/base/iladlr Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff 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' );
Original file line number Diff line number Diff 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' );
You can’t perform that action at this time.
0 commit comments