Package org.jquantlib.math.interpolations

Examples of org.jquantlib.math.interpolations.LogLinearInterpolation


    @Override
    public final int requiredPoints() { return 2; }

    @Override
    public Interpolation interpolate(final Array vx, final Array vy) /* @ReadOnly */{
        return new LogLinearInterpolation(vx, vy);
    }
View Full Code Here

TOP

Related Classes of org.jquantlib.math.interpolations.LogLinearInterpolation

Copyright © 2018 www.massapicom. 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.