Represents a set of 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 class UncertainMeasurementSample<T> : ICollection<UncertainMeasurement<T>>, 
	IEnumerable<UncertainMeasurement<T>>, IEnumerable
Public Class UncertainMeasurementSample(Of T) _
	Implements ICollection(Of UncertainMeasurement(Of T)), IEnumerable(Of UncertainMeasurement(Of T)),  _
	IEnumerable
generic<typename T>
public ref class UncertainMeasurementSample : ICollection<UncertainMeasurement<T>^>, 
	IEnumerable<UncertainMeasurement<T>^>, IEnumerable
type UncertainMeasurementSample<'T> =  
    class
        interface ICollection<UncertainMeasurement<'T>>
        interface IEnumerable<UncertainMeasurement<'T>>
        interface IEnumerable
    end

Type Parameters

T
The type of independent variable associated with each measurement.

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
UncertainMeasurementSample<(Of <(<'T>)>)>()()()()
Initializes a new, empty data set.
Add(UncertainMeasurement<(Of <<'(T>)>>))
Adds a new data point to the set.
Add(IEnumerable<(Of <<'(UncertainMeasurement<(Of <<'(T>)>>)>)>>))
Adds a series of data points to the set.
Add(T, Double, Double)
Adds a new data point to the set.
Clear()()()()
Removes all data points from the set.
Contains(UncertainMeasurement<(Of <<'(T>)>>))
Determines whether the set contains the given data point.
Count
Gets the size of the data set.
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.)
FitToFunction(Func<(Of <<'(array<Double>[]()[][], T, Double>)>>), array<Double>[]()[][])
Fits the data to an arbitrary parameterized function.
FitToLinearFunction(array<Func<(Of <<'(T, Double>)>>)>[]()[][])
Fits the data to a linear combination of fit functions.
GetEnumerator()()()()
Gets an enumerator over the measurements.
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.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)

Inheritance Hierarchy

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

See Also