Click or drag to resize

CurveFitDataSet Class

Class for aggregating data used in curve fitting. Contains x-values with their corresponding y-values along with with weights to be applied to the y-values during curve fitting.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreCurveFitDataSet
    CenterSpace.NMath.CoreMultipleFitCurveInfo

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[SerializableAttribute]
public class CurveFitDataSet : ICloneable

The CurveFitDataSet type exposes the following members.

Constructors
 NameDescription
Public methodCurveFitDataSet(DoubleVector, DoubleVector) Constructs a CurveFitDataSet from the given x and y value. All y-values are assumed to be equally weighted (all have an effective weight equal to 1).
Public methodCurveFitDataSet(DoubleVector, DoubleVector, DoubleVector) Constructs a CurveFitDataSet from the given values.
Top
Properties
 NameDescription
Public propertyNumberOfPoints Gets the number of points in the dataset.
Public propertyWeights Gets and sets the weights.
Public propertyXvalues Gets and sets the x-values.
Public propertyYvalues Gets and sets the y-values.
Top
Methods
 NameDescription
Public methodClone Creates a deep copy of self.
Top
See Also