Scroll to navigation

larmm(3) Library Functions Manual larmm(3)

NAME

larmm - larmm: scale factor to avoid overflow, step in latrs

SYNOPSIS

Functions


double precision function DLARMM (anorm, bnorm, cnorm)
DLARMM real function SLARMM (anorm, bnorm, cnorm)
SLARMM

Detailed Description

Function Documentation

double precision function DLARMM (double precision anorm, double precision bnorm, double precision cnorm)

DLARMM

Purpose:

!>
!> DLARMM returns a factor s in (0, 1] such that the linear updates
!>
!>    (s * C) - A * (s * B)  and  (s * C) - (s * A) * B
!>
!> cannot overflow, where A, B, and C are matrices of conforming
!> dimensions.
!>
!> This is an auxiliary routine so there is no argument checking.
!> 

Parameters

ANORM

!>          ANORM is DOUBLE PRECISION
!>          The infinity norm of A. ANORM >= 0.
!>          The number of rows of the matrix A.  M >= 0.
!> 

BNORM

!>          BNORM is DOUBLE PRECISION
!>          The infinity norm of B. BNORM >= 0.
!> 

CNORM

!>          CNORM is DOUBLE PRECISION
!>          The infinity norm of C. CNORM >= 0.
!> 


References: C. C. Kjelgaard Mikkelsen and L. Karlsson, Blocked Algorithms for Robust Solution of Triangular Linear Systems. In: International Conference on Parallel Processing and Applied Mathematics, pages 68--78. Springer, 2017.

Definition at line 60 of file dlarmm.f.

real function SLARMM (real anorm, real bnorm, real cnorm)

SLARMM

Purpose:

!>
!> SLARMM returns a factor s in (0, 1] such that the linear updates
!>
!>    (s * C) - A * (s * B)  and  (s * C) - (s * A) * B
!>
!> cannot overflow, where A, B, and C are matrices of conforming
!> dimensions.
!>
!> This is an auxiliary routine so there is no argument checking.
!> 

Parameters

ANORM

!>          ANORM is REAL
!>          The infinity norm of A. ANORM >= 0.
!>          The number of rows of the matrix A.  M >= 0.
!> 

BNORM

!>          BNORM is REAL
!>          The infinity norm of B. BNORM >= 0.
!> 

CNORM

!>          CNORM is REAL
!>          The infinity norm of C. CNORM >= 0.
!> 


References: C. C. Kjelgaard Mikkelsen and L. Karlsson, Blocked Algorithms for Robust Solution of Triangular Linear Systems. In: International Conference on Parallel Processing and Applied Mathematics, pages 68--78. Springer, 2017.

Definition at line 60 of file slarmm.f.

Author

Generated automatically by Doxygen for LAPACK from the source code.

Version 3.12.0 LAPACK