Represents a set of DataPoint measurements.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
Public NotInheritable Class DataSet _
	Inherits DataSet(Of Double) _
	Implements ICollection(Of DataPoint), IEnumerable(Of DataPoint),  _
	IEnumerable
public ref class DataSet sealed : public DataSet<double>, 
	ICollection<DataPoint^>, IEnumerable<DataPoint^>, IEnumerable

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DataSet()()()
Initializes a new, empty data set.
DataSet(IEnumerable<(Of <(DataPoint>)>))
Initializes a new data set with the specified data.
Add(DataPoint<(Of <(T>)>))
Adds a new data point to the set.
(Inherited from DataSet<(Of <(T>)>).)
Add(IEnumerable<(Of <(DataPoint<(Of <(T>)>)>)>))
Adds a series of data points to the set.
(Inherited from DataSet<(Of <(T>)>).)
Add(T, Double, Double)
Adds a new data point to the set.
(Inherited from DataSet<(Of <(T>)>).)
Clear()()()
Removes all data points from the set.
(Inherited from DataSet<(Of <(T>)>).)
Contains(DataPoint<(Of <(T>)>))
Determines whether the set contains the given data point.
(Inherited from DataSet<(Of <(T>)>).)
Count
Gets the size of the data set.
(Inherited from DataSet<(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(Function<(Of <(array<Double>[]()[], T, Double>)>), array<Double>[]()[])
Fits the data to an arbitrary parameterized function.
(Inherited from DataSet<(Of <(T>)>).)
FitToLine()()()
Fits the data to a line.
FitToLinearFunction(array<Function<(Of <(T, Double>)>)>[]()[])
Fits the data to a linear combination of fit functions.
(Inherited from DataSet<(Of <(T>)>).)
FitToPolynomial(Int32)
Fits the data to a polynomial.
FitToProportionality()()()
Fit the data to a proportionality relationship.
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(DataPoint<(Of <(T>)>))
Removes a data point from the set.
(Inherited from DataSet<(Of <(T>)>).)
ToString()()()
Returns a String that represents the current Object.
(Inherited from Object.)

Inheritance Hierarchy

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

See Also