Package org.jquantlib.math.interpolations

Examples of org.jquantlib.math.interpolations.LogCubicInterpolation


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

    @Override
    public final Interpolation interpolate(final Array vx, final Array vy) /* @ReadOnly */ {
        return new LogCubicInterpolation(vx, vy, da, monotonic, leftType, leftValue, rightType, rightValue);
    }
View Full Code Here


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

    @Override
    public final Interpolation interpolate(final Array vx, final Array vy) /* @ReadOnly */ {
        return new LogCubicInterpolation(vx, vy, da, monotonic, leftType, leftValue, rightType, rightValue);
    }
View Full Code Here

TOP

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

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.