Contains static methods for linear interpolation of data.
Constructor | Description |
Full Usage:
LinearInterpolation()
|
|
Instance member | Description |
Full Usage:
this.GetXOfU
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.GetYOfU
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.GetYOfX
Parameters:
float
Returns: float
Modifiers: abstract |
|
Full Usage:
this.Interpolate
Parameters:
IReadOnlyList<float>
yvec : IReadOnlyList<float>
Modifiers: abstract |
|
Static member | Description |
Full Usage:
LinearInterpolation.GetNextIndexOfValidPair(xcol, ycol, sourceLength, currentIndex)
Parameters:
IReadOnlyList<float>
ycol : IReadOnlyList<float>
sourceLength : int
currentIndex : int
Returns: int
|
|
Full Usage:
LinearInterpolation.Interpolate(x, x0, x1, y0, y1)
Parameters:
float
x0 : float
x1 : float
y0 : float
y1 : float
Returns: float
|
|
Full Usage:
LinearInterpolation.Interpolate(xcol, ycol, sourceLength, xstart, xincrement, numberOfValues, yOutsideOfBounds, resultCol)
Parameters:
IReadOnlyList<float>
ycol : IReadOnlyList<float>
sourceLength : int
xstart : float
xincrement : float
numberOfValues : int
yOutsideOfBounds : float
resultCol : byref<float[]>
Returns: string
|
|
Full Usage:
LinearInterpolation.Interpolate(xcol, ycol, sourceLength, xnewsampling, numberOfValues, yOutsideOfBounds, resultCol)
Parameters:
IReadOnlyList<float>
ycol : IReadOnlyList<float>
sourceLength : int
xnewsampling : IReadOnlyList<float>
numberOfValues : int
yOutsideOfBounds : float
resultCol : byref<float[]>
Returns: string
|
|