Package jline.api.fes
Class Fes_map_interp
java.lang.Object
jline.api.fes.Fes_map_interp
Monotone piecewise cubic Hermite interpolation.
Interpolates the descriptors of a MAP flow-equivalent server between the populations at
which they were evaluated. Fritsch and Carlson slopes are used, with the noncentered
three-point endpoint rule of de Boor, so the interpolant never overshoots and a monotone
sequence of throughputs stays monotone. The algorithm is written out rather than
delegated to a library so that the MATLAB, Java, Python and C++ ports agree.
Copyright (c) 2012-2026, Imperial College London
All rights reserved.
-
Method Summary
Modifier and TypeMethodDescriptionstatic double[]fes_map_interp(double[] x, double[] y, double[] xq) Interpolates one series at the query abscissae.
-
Method Details
-
fes_map_interp
public static double[] fes_map_interp(double[] x, double[] y, double[] xq) Interpolates one series at the query abscissae.- Parameters:
x- sample abscissae, strictly increasingy- sample valuesxq- query abscissae- Returns:
- interpolated values
-