HermiteCoef Type
Record fields
| Record Field | Description |
Full Usage:
Slopes
Field type: Vector<float>
|
|
Full Usage:
XValues
Field type: Vector<float>
|
|
Full Usage:
YValues
Field type: Vector<float>
|
Instance members
| Instance member | Description |
Full Usage:
this.Predict
Returns: float -> float
Function that takes an x value and returns function value.
|
x values outside of the xValue range are predicted by straight lines defined by the nearest knot!
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Static members
| Static member | Description |
Full Usage:
HermiteCoef.Create(xValues) (yValues) (slopes)
Parameters:
Vector<float>
yValues : Vector<float>
slopes : Vector<float>
Returns: HermiteCoef
|
|
FSharp.Stats