Namespace: DotNumerics.LinearAlgebra.CSEispackAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Run(
int NM,
int N,
ref double[] AR,
int offset_ar,
ref double[] AI,
int offset_ai,
ref int LOW,
ref int IGH,
ref double[] SCALE,
int offset_scale
)
Public Sub Run (
NM As Integer,
N As Integer,
ByRef AR As Double(),
offset_ar As Integer,
ByRef AI As Double(),
offset_ai As Integer,
ByRef LOW As Integer,
ByRef IGH As Integer,
ByRef SCALE As Double(),
offset_scale As Integer
)
Request Example
View SourceParameters
- NM Int32
-
must be set to the row dimension of two-dimensional
array parameters as declared in the calling program
dimension statement.
- N Int32
-
is the order of the matrix.
- AR Double
-
and ai contain the real and imaginary parts,
respectively, of the complex matrix to be balanced.
- offset_ar Int32
-
- AI Double
-
- offset_ai Int32
-
- LOW Int32
-
and igh are two integers such that ar(i,j) and ai(i,j)
are equal to zero if
(1) i is greater than j and
(2) j=1,...,low-1 or i=igh+1,...,n.
- IGH Int32
-
- SCALE Double
-
contains information determining the
permutations and scaling factors used.
- offset_scale Int32
-
See Also