SplineEval Method (Double) |
Returns the value of the spline at each point of an array.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double[] Eval(
double[] x
)
Public Overridable Function Eval (
x As Double()
) As Double()
public:
virtual array<double>^ Eval(
array<double>^ x
)
abstract Eval :
x : float[] -> float[]
override Eval :
x : float[] -> float[]
Parameters
- x
- Type: SystemDouble
A double array of points at which the spline is to be
evaluated.
Return Value
Type:
Double
A
double array containing the value of the spline at each
point of the array x.
See Also