NonLinearRegression Module
Types and nested modules
| Type/Module | Description |
Functions and values
| Function or value | Description |
Full Usage:
createModel parameterNames getFunctionValue getGradientValue
Parameters:
string[]
getFunctionValue : Vector<float> -> float -> float
getGradientValue : Vector<float> -> Vector<float> -> float -> Vector<float>
Returns: Model
|
|
Full Usage:
createSolverOption minimumDeltaValue minimumDeltaParameters maximumIterations initialParamGuess
Parameters:
float
minimumDeltaParameters : float
maximumIterations : int
initialParamGuess : float[]
Returns: SolverOptions
|
|
Full Usage:
getRSS model xData yData paramVector
Parameters:
Model
-
xData : float[]
-
yData : float[]
-
paramVector : Vector<float>
-
Returns: float
|
|
Full Usage:
shouldTerminate currentValueRSS newValueRSS iterationCount currentParamGuess newParamGuess solverOptions
Parameters:
float
-
newValueRSS : float
-
iterationCount : int
-
currentParamGuess : Vector<float>
-
newParamGuess : Vector<float>
-
solverOptions : SolverOptions
-
Returns: bool
|
Example
|
Full Usage:
solverConverged solverOptions estParams
Parameters:
SolverOptions
estParams : ResizeArray<Vector<float>>
Returns: bool
|
|
Full Usage:
standardErrorOfPrediction dOF predicted actual
Parameters:
float
predicted : float[]
actual : float[]
Returns: float
|
|
|
|
Full Usage:
updateResidualVectorInPlace model xData yData paramVector residualVector
Parameters:
Model
-
xData : float[]
-
yData : float[]
-
paramVector : Vector<float>
-
residualVector : Vector<float>
-
Returns: Vector<float>
|
Example
|
FSharp.Stats