Click or drag to resize

OneVariableFunctionFitterMCurveFitResidualFunction Class

Class representing the residual function for the curve fit.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreDoubleMultiVariableFunction
    CenterSpace.NMath.CoreOneVariableFunctionFitterMCurveFitResidualFunction

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public sealed class CurveFitResidualFunction : DoubleMultiVariableFunction

The OneVariableFunctionFitterMCurveFitResidualFunction type exposes the following members.

Constructors
 NameDescription
Public methodOneVariableFunctionFitterMCurveFitResidualFunction(DoubleParameterizedFunction, DoubleVector, DoubleVector, Int32) Constructs a CurveFitResidualFunction instance for the given parameterized function and x-yValues values.
Public methodOneVariableFunctionFitterMCurveFitResidualFunction(DoubleParameterizedFunction, DoubleVector, DoubleVector, DoubleVector, Int32) Constructs a CurveFitResidualFunction instance for the given parameterized function and x-y values.
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) Evaluate the function at the point x and place the result in yValues.
(Overrides DoubleMultiVariableFunctionEvaluate(DoubleVector, DoubleVector))
Public methodJacobian(Double) Evaluates the Jacobian of the function at the given point.
(Inherited from DoubleMultiVariableFunction)
Public methodJacobian(DoubleVector, DoubleMatrix) Evaluates the jacobian of the residual function.
(Overrides DoubleMultiVariableFunctionJacobian(DoubleVector, DoubleMatrix))
Top
See Also