Represents a set of UncertainMeasurement<(Of <(<'T>)>)> measurements.

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public sealed class UncertainMeasurementSample : UncertainMeasurementSample<double>
Public NotInheritable Class UncertainMeasurementSample _
	Inherits UncertainMeasurementSample(Of Double)
public ref class UncertainMeasurementSample sealed : public UncertainMeasurementSample<double>
[<SealedAttribute>]
type UncertainMeasurementSample =  
    class
        inherit UncertainMeasurementSample<float>
    end

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
UncertainMeasurementSample()()()()
Initializes a new, empty data set.
UncertainMeasurementSample(IEnumerable<(Of <<'(UncertainMeasurement<(Of <<'(Double>)>>)>)>>))
Initializes a new data set with the specified data.
Add(UncertainMeasurement<(Of <<'(T>)>>))
Adds a new data point to the set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Add(IEnumerable<(Of <<'(UncertainMeasurement<(Of <<'(T>)>>)>)>>))
Adds a series of data points to the set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Add(T, Double, Double)
Adds a new data point to the set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Clear()()()()
Removes all data points from the set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Contains(UncertainMeasurement<(Of <<'(T>)>>))
Determines whether the set contains the given data point.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Count
Gets the size of the data set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize()()()()
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
FitToConstant()()()()
Fits the data to a constant value.
FitToFunction(Func<(Of <<'(array<Double>[]()[][], T, Double>)>>), array<Double>[]()[][])
Fits the data to an arbitrary parameterized function.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
FitToLine()()()()
Fits the data to a line.
FitToLinearFunction(array<Func<(Of <<'(T, Double>)>>)>[]()[][])
Fits the data to a linear combination of fit functions.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
FitToPolynomial(Int32)
Fits the data to a polynomial.
FitToProportionality()()()()
Fit the data to a proportionality relationship.
GetEnumerator()()()()
Gets an enumerator over the measurements.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone()()()()
Creates a shallow copy of the current Object.
(Inherited from Object.)
Remove(UncertainMeasurement<(Of <<'(T>)>>))
Removes a data point from the set.
(Inherited from UncertainMeasurementSample<(Of <(<'T>)>)>.)
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)

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.

Inheritance Hierarchy

System..::..Object
  Meta.Numerics.Statistics..::..UncertainMeasurementSample<(Of <(<'Double>)>)>
    Meta.Numerics.Statistics..::..UncertainMeasurementSample

See Also