StepInterpolationInterpolate(IEnumerableDouble, IEnumerableDouble) Method |
Create a step interpolation from an unsorted set of (x,y) value pairs.
Namespace: Altaxo.Calc.InterpolationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static StepInterpolation Interpolate(
IEnumerable<double> x,
IEnumerable<double> y
)
Parameters
- x IEnumerableDouble
- The sample points.
- y IEnumerableDouble
- The segment values corresponding to each sample point.
Return Value
StepInterpolationThe step interpolator.
See Also