Click or drag to resize

DVSRCORun Method

Saves or restores the DVODE COMMON block state.

Namespace: Altaxo.Calc.Ode.Obsolete.DVode
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public void Run(
	ref double[] RSAV,
	int offset_rsav,
	ref int[] ISAV,
	int offset_isav,
	int JOB
)

Parameters

RSAV  Double
= real array of length 49 or more.
offset_rsav  Int32
The starting offset in RSAV.
ISAV  Int32
= integer array of length 41 or more.
offset_isav  Int32
The starting offset in ISAV.
JOB  Int32
= flag indicating to save or restore the COMMON blocks: JOB = 1 if COMMON is to be saved (written to RSAV/ISAV). JOB = 2 if COMMON is to be restored (read from RSAV/ISAV). A call with JOB = 2 presumes a prior call with JOB = 1.
See Also