Namespace: DotNumerics.LinearAlgebra.CSLapackAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public void Run(
int N,
double[] H,
int offset_h,
int LDH,
double SR1,
double SI1,
double SR2,
double SI2,
ref double[] V,
int offset_v
)
Public Sub Run (
N As Integer,
H As Double(),
offset_h As Integer,
LDH As Integer,
SR1 As Double,
SI1 As Double,
SR2 As Double,
SI2 As Double,
ByRef V As Double(),
offset_v As Integer
)
Request Example
View SourceParameters
- N Int32
-
(input) integer
Order of the matrix H. N must be either 2 or 3.
- H Double
-
(input) DOUBLE PRECISION array of dimension (LDH,N)
The 2-by-2 or 3-by-3 matrix H in (*).
- offset_h Int32
-
- LDH Int32
-
(input) integer
The leading dimension of H as declared in
the calling procedure. LDH.GE.N
- SR1 Double
-
(input) DOUBLE PRECISION
- SI1 Double
-
The shifts in (*).
- SR2 Double
-
- SI2 Double
-
- V Double
-
(output) DOUBLE PRECISION array of dimension N
A scalar multiple of the first column of the
matrix K in (*).
- offset_v Int32
-
See Also