Click or drag to resize

SOLBCRun Method

Solves a complex banded linear 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 ML,
	int MU,
	ref double[] BR,
	int offset_br,
	ref double[] BI,
	int offset_bi,
	int[] IP,
	int offset_ip
)

Parameters

N  Int32
ORDER OF MATRIX A.
NDIM  Int32
DECLARED DIMENSION OF ARRAY A .
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.
ML  Int32
LOWER BANDWIDTH OF A (DIAGONAL IS NOT COUNTED).
MU  Int32
UPPER BANDWIDTH OF A (DIAGONAL IS NOT COUNTED).
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 DECBC.
offset_ip  Int32
The starting offset in IP.
See Also