Examples of BilinearInterpolation


Examples of org.jquantlib.math.interpolations.BilinearInterpolation

* @author Richard Gomes
*/
public class Bilinear implements Interpolation2D.Interpolator2D {

    public Interpolation2D interpolate(final Array vx, final Array vy, final Matrix mz) /* @ReadOnly */ {
        return new BilinearInterpolation(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.