Package com.opengamma.analytics.math.interpolation

Examples of com.opengamma.analytics.math.interpolation.LogLinearInterpolator1D


    m.put(1., S1);
    m.put(2., S1);
    m.put(3., S3);
    other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, m, INTERPOLATOR, NAME);
    assertFalse(other.equals(XY_CUBE));
    other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, SURFACE_MAP, new LogLinearInterpolator1D(), NAME);
    assertFalse(other.equals(XY_CUBE));
    other = InterpolatedFromSurfacesDoublesCube.fromSorted(SurfacePlane.XY, SURFACE_MAP, INTERPOLATOR, NAME + "_");
    assertFalse(other.equals(XY_CUBE));
  }
View Full Code Here

TOP

Related Classes of com.opengamma.analytics.math.interpolation.LogLinearInterpolator1D

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.