Click or drag to resize

DLASCLRun Method

Purpose ======= DLASCL multiplies the M by N real matrix A by the real scalar CTO/CFROM. This is done without over/underflow as long as the final result CTO*A(I,J)/CFROM does not over/underflow. TYPE specifies that A may be full, upper triangular, lower triangular, upper Hessenberg, or banded.

Namespace: DotNumerics.LinearAlgebra.CSLapack
Assembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public void Run(
	string TYPE,
	int KL,
	int KU,
	double CFROM,
	double CTO,
	int M,
	int N,
	ref double[] A,
	int offset_a,
	int LDA,
	ref int INFO
)
Request Example View Source

Parameters

TYPE  String
(input) CHARACTER*1 TYPE indices the storage type of the input matrix. = 'G': A is a full matrix. = 'L': A is a lower triangular matrix. = 'U': A is an upper triangular matrix. = 'H': A is an upper Hessenberg matrix. = 'B': A is a symmetric band matrix with lower bandwidth KL and upper bandwidth KU and with the only the lower half stored. = 'Q': A is a symmetric band matrix with lower bandwidth KL and upper bandwidth KU and with the only the upper half stored. = 'Z': A is a band matrix with lower bandwidth KL and upper bandwidth KU.
KL  Int32
(input) INTEGER The lower bandwidth of A. Referenced only if TYPE = 'B', 'Q' or 'Z'.
KU  Int32
(input) INTEGER The upper bandwidth of A. Referenced only if TYPE = 'B', 'Q' or 'Z'.
CFROM  Double
(input) DOUBLE PRECISION
CTO  Double
(input) DOUBLE PRECISION The matrix A is multiplied by CTO/CFROM. A(I,J) is computed without over/underflow if the final result CTO*A(I,J)/CFROM can be represented without over/underflow. CFROM must be nonzero.
M  Int32
(input) INTEGER The number of rows of the matrix A. M .GE. 0.
N  Int32
(input) INTEGER The number of columns of the matrix A. N .GE. 0.
A  Double
(input/output) DOUBLE PRECISION array, dimension (LDA,N) The matrix to be multiplied by CTO/CFROM. See TYPE for the storage type.
offset_a  Int32
 
LDA  Int32
(input) INTEGER The leading dimension of the array A. LDA .GE. max(1,M).
INFO  Int32
(output) INTEGER 0 - successful exit .LT.0 - if INFO = -i, the i-th argument had an illegal value.
See Also