f77_gelss Interface

public interface f77_gelss

Generic old style interface for GELSS. Supports s, d, c, z. See also: mfi_gelss, sgelss, dgelss, cgelss, zgelss.


Subroutines

public pure subroutine sgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info)

Original interface for SGELSS See also: mfi_gelss, f77_gelss. SGELSS solves overdetermined or underdetermined systems for GE matrices

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: nrhs
real(kind=REAL32), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
real(kind=REAL32), intent(inout) :: b(ldb,*)
integer, intent(in) :: ldb
real(kind=REAL32), intent(out) :: s(*)
real(kind=REAL32), intent(in) :: rcond
integer, intent(out) :: rank
real(kind=REAL32), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info

public pure subroutine dgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info)

Original interface for DGELSS See also: mfi_gelss, f77_gelss. DGELSS solves overdetermined or underdetermined systems for GE matrices

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: nrhs
real(kind=REAL64), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
real(kind=REAL64), intent(inout) :: b(ldb,*)
integer, intent(in) :: ldb
real(kind=REAL64), intent(out) :: s(*)
real(kind=REAL64), intent(in) :: rcond
integer, intent(out) :: rank
real(kind=REAL64), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info

public pure subroutine cgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info)

Original interface for CGELSS See also: mfi_gelss, f77_gelss. CGELSS solves overdetermined or underdetermined systems for GE matrices

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: nrhs
complex(kind=REAL32), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL32), intent(inout) :: b(ldb,*)
integer, intent(in) :: ldb
complex(kind=REAL32), intent(out) :: s(*)
complex(kind=REAL32), intent(in) :: rcond
integer, intent(out) :: rank
complex(kind=REAL32), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info

public pure subroutine zgelss(m, n, nrhs, a, lda, b, ldb, s, rcond, rank, work, lwork, info)

Original interface for ZGELSS See also: mfi_gelss, f77_gelss. ZGELSS solves overdetermined or underdetermined systems for GE matrices

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: m
integer, intent(in) :: n
integer, intent(in) :: nrhs
complex(kind=REAL64), intent(inout) :: a(lda,*)
integer, intent(in) :: lda
complex(kind=REAL64), intent(inout) :: b(ldb,*)
integer, intent(in) :: ldb
complex(kind=REAL64), intent(out) :: s(*)
complex(kind=REAL64), intent(in) :: rcond
integer, intent(out) :: rank
complex(kind=REAL64), intent(out) :: work(*)
integer, intent(in) :: lwork
integer, intent(out) :: info