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

Syntax

C#
public delegate void G02HM_UCV(
	double t,
	out double u,
	out double w
)
Visual Basic
Public Delegate Sub G02HM_UCV ( _
	t As Double, _
	<OutAttribute> ByRef u As Double, _
	<OutAttribute> ByRef w As Double _
)
Visual C++
public delegate void G02HM_UCV(
	double t, 
	[OutAttribute] double% u, 
	[OutAttribute] double% w
)
F#
type G02HM_UCV = 
    delegate of 
        t : float * 
        u : float byref * 
        w : 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.
w
Type: System..::..Double%
On exit: the value of the w function at the point t.
Constraint: w0.0.

See Also