LmScalarModel is an interface for models (functions) whose ranges are single real-valued numbers
LmScalarModel
01 Syntax
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| eval | 1 | Evaluates the model's estimated output for the k-th input data that corresponds to the parameter vector |
| jacobian | 1 | Computes the model's Jacobian vector for the k-th input data that corresponds to the parameter vector |
| hessian | 1 | Computes the model's Hessian matrix for the k-th input data that corresponds to the parameter vector |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| MeasuredData | 1 | Gets the vector of real numbers containing measured output data, |
04 Members
Int32, Double())Evaluates the model's estimated output for the k-th input data that corresponds to the parameter vector
| Name | Type | Description |
|---|---|---|
dataIdx | Int32 | The index of the input data |
optParams | Double() | A vector of real values of parameters in the model |
Estimated output value produced by the model
Int32, Double())Computes the model's Jacobian vector for the k-th input data that corresponds to the parameter vector
| Name | Type | Description |
|---|---|---|
dataIdx | Int32 | The index of the input data |
optParams | Double() | A vector of real values of parameters in the model |
Jacobian vector of the model for the specified input data
Int32, Double())Computes the model's Hessian matrix for the k-th input data that corresponds to the parameter vector
| Name | Type | Description |
|---|---|---|
dataIdx | Int32 | The index of the input data |
optParams | Double() | A vector of real values of parameters in the model |
Hessian matrix of the model for the specified input data
Gets the vector of real numbers containing measured output data,