ucv must return the values of the functions and 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..::..DoubleOn entry: the argument for which the functions and must be evaluated.
- u
- Type: System..::..Double%On exit: the value of the function at the point t.Constraint: .
- ud
- Type: System..::..Double%On exit: the value of the derivative of the function at the point t.
- w
- Type: System..::..Double%On exit: the value of the function at the point t.Constraint: .
- wd
- Type: System..::..Double%On exit: the value of the derivative of the function at the point t.