Returns the Y value of the data point with the specified index.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public double GetYValue(
int index
)
Public Function GetYValue (
index As Integer
) As Double
public:
double GetYValue(
int index
)
member GetYValue :
index : int -> float
Parameters
- index
- Type: SystemInt32
A zero-based index.
Return Value
Type:
DoubleThe Y value at the specified index.
This method returns the Y-value of the data point with index index.
If index is less than NumberOfIntervals, the data point
returned corresponds to the lower bound of the indexth interval.
If index equals NumberOfIntervals, the data point
corresponds to the upper bound of the last interval.
Reference
PiecewiseCurveGetYValue(Int32)