PolynomialCoef Type
contains polynomial coefficients sorted from intercept to highest order factor
Record fields
| Record Field | Description |
Full Usage:
C0_CX
Field type: Vector<float>
|
Instance members
| Instance member | Description |
Full Usage:
this.Differentiate
Parameters:
int
-
Level of differentiation: 1 = fst derivative, 2 = snd derivative, ... .
Returns: PolynomialCoef
Coefficients of the derivative polynomial
|
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Full Usage:
this.GetDerivative
Parameters:
int
-
depth of derivative: 1 = slope, 2 = curvature, ...
x : float
-
x value of which the corresponding y value should be predicted
Returns: float
predicted derivative with given polynomial coefficients at X=x
|
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Full Usage:
this.GetIntegralBetween
Parameters:
float
-
start x value
x2 : float
-
end x value
Returns: float
integral of the polynomial in the range defined by x1 and x2
|
Example
val xData: obj
val yData: obj
val coefficients: obj
|
|
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Full Usage:
this.Predict
Returns: float -> float
predicted y value with given polynomial coefficients at X=x
|
Example
val xData: obj
val yData: obj
val coefficients: obj
|
Static members
| Static member | Description |
|
|
FSharp.Stats