Click or drag to resize

SOLHCRun Method

Solves a complex Hessenberg system using a previously computed factorization.

Namespace: Altaxo.Calc.Ode.Obsolete.Radau5
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void Run(
	int N,
	int NDIM,
	double[] AR,
	int offset_ar,
	double[] AI,
	int offset_ai,
	int LB,
	ref double[] BR,
	int offset_br,
	ref double[] BI,
	int offset_bi,
	int[] IP,
	int offset_ip
)

Parameters

N  Int32
= ORDER OF MATRIX.
NDIM  Int32
= DECLARED DIMENSION OF ARRAYS AR AND AI.
AR  Double
Real part of the factored matrix.
offset_ar  Int32
The starting offset in AR.
AI  Double
Imaginary part of the factored matrix.
offset_ai  Int32
The starting offset in AI.
LB  Int32
= LOWER BANDWIDTH OF A.
BR  Double
Real part of the right-hand side vector.
offset_br  Int32
The starting offset in BR.
BI  Double
Imaginary part of the right-hand side vector.
offset_bi  Int32
The starting offset in BI.
IP  Int32
= PIVOT VECTOR OBTAINED FROM DEC.
offset_ip  Int32
The starting offset in IP.
See Also