ucv must return the values of the functions u and w and their derivatives for a given value of its argument.

Syntax

C#
public delegate void G02HL_UCV(
	double t,
	out double u,
	out double ud,
	out double w,
	out double wd
)
Visual Basic
Public Delegate Sub G02HL_UCV ( _
	t As Double, _
	<OutAttribute> ByRef u As Double, _
	<OutAttribute> ByRef ud As Double, _
	<OutAttribute> ByRef w As Double, _
	<OutAttribute> ByRef wd As Double _
)
Visual C++
public delegate void G02HL_UCV(
	double t, 
	[OutAttribute] double% u, 
	[OutAttribute] double% ud, 
	[OutAttribute] double% w, 
	[OutAttribute] double% wd
)
F#
type G02HL_UCV = 
    delegate of 
        t : float * 
        u : float byref * 
        ud : float byref * 
        w : float byref * 
        wd : float byref -> unit

Parameters

t
Type: System..::..Double
On entry: the argument for which the functions u and w must be evaluated.
u
Type: System..::..Double%
On exit: the value of the u function at the point t.
Constraint: u0.0.
ud
Type: System..::..Double%
On exit: the value of the derivative of the u function at the point t.
w
Type: System..::..Double%
On exit: the value of the w function at the point t.
Constraint: w0.0.
wd
Type: System..::..Double%
On exit: the value of the derivative of the w function at the point t.

See Also