Examples of BicubicSplineInterpolation


Examples of org.jquantlib.math.interpolations.BicubicSplineInterpolation

*/
// TODO: rename to Bicubic
public class BicubicSpline implements Interpolation2D.Interpolator2D {

    public Interpolation2D interpolate(final Array vx, final Array vy, final Matrix mz) /* @ReadOnly */ {
        return new BicubicSplineInterpolation(vx, vy, mz);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.