UncertainMeasurementSample Class

Represents a set of UncertainMeasurementT measurements.

Definition

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class UncertainMeasurementSample : UncertainMeasurementSample<double>
Inheritance
Object    UncertainMeasurementSampleDouble    UncertainMeasurementSample

Remarks

This class adds functionality to the UncertainMeasurementSample class which applies when the independent variable (X variable) is a single real number. This includes fitting to a constant, line, or polynomial.

Constructors

UncertainMeasurementSample Initializes a new, empty data set.
UncertainMeasurementSample(IEnumerableUncertainMeasurementDouble) Initializes a new data set with the specified data.

Properties

Count Gets the size of the data set.
(Inherited from UncertainMeasurementSampleT)

Methods

Add(IEnumerableUncertainMeasurementT) Adds a series of data points to the set.
(Inherited from UncertainMeasurementSampleT)
Add(UncertainMeasurementT) Adds a new data point to the set.
(Inherited from UncertainMeasurementSampleT)
Add(T, Double, Double) Adds a new data point to the set.
(Inherited from UncertainMeasurementSampleT)
Clear Removes all data points from the set.
(Inherited from UncertainMeasurementSampleT)
Contains Determines whether the set contains the given data point.
(Inherited from UncertainMeasurementSampleT)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FitToConstant Fits the data to a constant value.
FitToFunction Fits the data to an arbitrary parameterized function.
(Inherited from UncertainMeasurementSampleT)
FitToLine Fits the data to a line.
FitToLinearFunction Fits the data to a linear combination of fit functions.
(Inherited from UncertainMeasurementSampleT)
FitToPolynomial Fits the data to a polynomial.
FitToProportionality Fit the data to a proportionality relationship.
GetEnumerator Gets an enumerator over the measurements.
(Inherited from UncertainMeasurementSampleT)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
Remove Removes a data point from the set.
(Inherited from UncertainMeasurementSampleT)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also