Click or drag to resize

MultipleCurveFitResidual(IListDoubleVector, IListDoubleVector, IListDoubleVector, MultipleCurveFitFunction) Constructor

Constructs a MultipleCurveFitResidual object from the given MultipleCurveFitFunction, data set x and y values, and weights for y values.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public MultipleCurveFitResidual(
	IList<DoubleVector> xValues,
	IList<DoubleVector> yValues,
	IList<DoubleVector> weights,
	MultipleCurveFitFunction function
)

Parameters

xValues  IListDoubleVector
A list of independent x-values, one for each data set being fit.
yValues  IListDoubleVector
A list of dependent y-values, one for each data set being fit.
weights  IListDoubleVector
A list of y value weights, one for each data set being fit.
function  MultipleCurveFitFunction
The parameterized function being fit.
See Also