ilalc#

Functions

INT ilaslc(
    const INT           m,
    const INT           n,
    const f32* restrict A,
    const INT           lda
);
INT ilaslc(const INT m, const INT n, const f32 *restrict A, const INT lda)#

ILASLC scans A for its last non-zero column.

Parameters

in
m

The number of rows of the matrix A.

in
n

The number of columns of the matrix A.

in
A

Double precision array, dimension (lda, n). The m by n matrix A.

in
lda

The leading dimension of the array A. lda >= max(1, m).

Functions

INT iladlc(
    const INT           m,
    const INT           n,
    const f64* restrict A,
    const INT           lda
);
INT iladlc(const INT m, const INT n, const f64 *restrict A, const INT lda)#

ILADLC scans A for its last non-zero column.

Parameters

in
m

The number of rows of the matrix A.

in
n

The number of columns of the matrix A.

in
A

Double precision array, dimension (lda, n). The m by n matrix A.

in
lda

The leading dimension of the array A. lda >= max(1, m).

Functions

INT ilaclc(
    const INT           m,
    const INT           n,
    const c64* restrict A,
    const INT           lda
);
INT ilaclc(const INT m, const INT n, const c64 *restrict A, const INT lda)#

ILACLC scans A for its last non-zero column.

Parameters

in
m

The number of rows of the matrix A.

in
n

The number of columns of the matrix A.

in
A

Complex single precision array, dimension (lda, n). The m by n matrix A.

in
lda

The leading dimension of the array A. lda >= max(1, m).

Functions

INT ilazlc(
    const INT            m,
    const INT            n,
    const c128* restrict A,
    const INT            lda
);
INT ilazlc(const INT m, const INT n, const c128 *restrict A, const INT lda)#

ILAZLC scans A for its last non-zero column.

Parameters

in
m

The number of rows of the matrix A.

in
n

The number of columns of the matrix A.

in
A

Complex double precision array, dimension (lda, n). The m by n matrix A.

in
lda

The leading dimension of the array A. lda >= max(1, m).