UncertainMeasurementT Constructor (T, Double, Double) |
Initializes a new data point with the given values for the ordinate, abcissa, and uncertainty.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public UncertainMeasurement(
T x,
double y,
double dy
)
Public Sub New (
x As T,
y As Double,
dy As Double
)
public:
UncertainMeasurement(
T x,
double y,
double dy
)
new :
x : 'T *
y : float *
dy : float -> UncertainMeasurement
Parameters
- x
- Type: T
The ordinate. - y
- Type: SystemDouble
The best estimate of the abcissa. - dy
- Type: SystemDouble
The uncertainty in the abcissa.
See Also