Examples of LogCubicInterpolation


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

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
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.