LogLinearInterpolate(IEnumerableDouble, IEnumerableDouble) Method |
Create a piecewise log-linear 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 LogLinear Interpolate(
IEnumerable<double> x,
IEnumerable<double> y
)
Parameters
- x IEnumerableDouble
- The sample points.
- y IEnumerableDouble
- The sample values corresponding to x.
Return Value
LogLinearThe log-linear interpolator.
See Also