Click or drag to resize

MultiVariableFunctionFitterMResidualFunction Class

Residual function. This is the function that is minimized to produce the parameters for the best fit.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleMultiVariableFunction
    CenterSpace.NMath.CoreMultiVariableFunctionFitterMResidualFunction

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
protected sealed class ResidualFunction : DoubleMultiVariableFunction

The MultiVariableFunctionFitterMResidualFunction type exposes the following members.

Constructors
 NameDescription
Public methodMultiVariableFunctionFitterMResidualFunction Constructs a ResidualFunction instance.
Top
Properties
 NameDescription
Public propertyCentralDifferenceDelta Sets the delta for using the central difference method for approximating the Jacobian. The Jacobian will be approximated only if the deriving class does not override the Jacobian method.
(Inherited from DoubleMultiVariableFunction)
Public propertyXDimension Gets and sets the dimension of the function domain.
(Inherited from DoubleMultiVariableFunction)
Public propertyYDimension Gets and sets the dimension of the function range.
(Inherited from DoubleMultiVariableFunction)
Top
Methods
 NameDescription
Public methodCloneICloneable method. Not implemented here. Deriving classes must implement if desired.
(Inherited from DoubleMultiVariableFunction)
Public methodEvaluate(Double) Evaluate the function at the point x.
(Inherited from DoubleMultiVariableFunction)
Public methodEvaluate(DoubleMatrix, DoubleMatrix) Evaluate the function at the points X and place the results in Y.
(Inherited from DoubleMultiVariableFunction)
Public methodEvaluate(DoubleVector, DoubleVector) Computes the residuals at for the given functional parameters.
(Overrides DoubleMultiVariableFunctionEvaluate(DoubleVector, DoubleVector))
Public methodJacobian(Double) Evaluates the Jacobian of the function at the given point.
(Inherited from DoubleMultiVariableFunction)
Public methodJacobian(DoubleVector, DoubleMatrix) Computes the Jacobian of the residual function for the given functional parameters.
(Overrides DoubleMultiVariableFunctionJacobian(DoubleVector, DoubleMatrix))
Top
See Also