public class org.apache.commons.math3.analysis.interpolation.LinearInterpolator implements org.apache.commons.math3.analysis.interpolation.UnivariateInterpolator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.interpolation.LinearInterpolator
  super_class: java.lang.Object
{
  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.analysis.interpolation.LinearInterpolator this
         0: .line 31
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
            return
        end local 0 // org.apache.commons.math3.analysis.interpolation.LinearInterpolator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/analysis/interpolation/LinearInterpolator;

  public org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction interpolate(double[], double[]);
    descriptor: ([D[D)Lorg/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=8, args_size=3
        start local 0 // org.apache.commons.math3.analysis.interpolation.LinearInterpolator this
        start local 1 // double[] x
        start local 2 // double[] y
         0: .line 49
            aload 1 /* x */
            arraylength
            aload 2 /* y */
            arraylength
            if_icmpeq 2
         1: .line 50
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* x */
            arraylength
            aload 2 /* y */
            arraylength
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         2: .line 53
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            arraylength
            iconst_2
            if_icmpge 6
         3: .line 54
            new org.apache.commons.math3.exception.NumberIsTooSmallException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_OF_POINTS:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         4: .line 55
            aload 1 /* x */
            arraylength
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_2
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_1
         5: .line 54
            invokespecial org.apache.commons.math3.exception.NumberIsTooSmallException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
         6: .line 59
      StackMap locals:
      StackMap stack:
            aload 1 /* x */
            arraylength
            iconst_1
            isub
            istore 3 /* n */
        start local 3 // int n
         7: .line 61
            aload 1 /* x */
            invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([D)V
         8: .line 64
            iload 3 /* n */
            newarray 7
            astore 4 /* m */
        start local 4 // double[] m
         9: .line 65
            iconst_0
            istore 5 /* i */
        start local 5 // int i
        10: goto 13
        11: .line 66
      StackMap locals: int double[] int
      StackMap stack:
            aload 4 /* m */
            iload 5 /* i */
            aload 2 /* y */
            iload 5 /* i */
            iconst_1
            iadd
            daload
            aload 2 /* y */
            iload 5 /* i */
            daload
            dsub
            aload 1 /* x */
            iload 5 /* i */
            iconst_1
            iadd
            daload
            aload 1 /* x */
            iload 5 /* i */
            daload
            dsub
            ddiv
            dastore
        12: .line 65
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 5 /* i */
            iload 3 /* n */
            if_icmplt 11
        end local 5 // int i
        14: .line 69
            iload 3 /* n */
            anewarray org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            astore 5 /* polynomials */
        start local 5 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] polynomials
        15: .line 70
            iconst_2
            newarray 7
            astore 6 /* coefficients */
        start local 6 // double[] coefficients
        16: .line 71
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        17: goto 22
        18: .line 72
      StackMap locals: org.apache.commons.math3.analysis.interpolation.LinearInterpolator double[] double[] int double[] org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] double[] int
      StackMap stack:
            aload 6 /* coefficients */
            iconst_0
            aload 2 /* y */
            iload 7 /* i */
            daload
            dastore
        19: .line 73
            aload 6 /* coefficients */
            iconst_1
            aload 4 /* m */
            iload 7 /* i */
            daload
            dastore
        20: .line 74
            aload 5 /* polynomials */
            iload 7 /* i */
            new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            dup
            aload 6 /* coefficients */
            invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
            aastore
        21: .line 71
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 7 /* i */
            iload 3 /* n */
            if_icmplt 18
        end local 7 // int i
        23: .line 77
            new org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction
            dup
            aload 1 /* x */
            aload 5 /* polynomials */
            invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction.<init>:([D[Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;)V
            areturn
        end local 6 // double[] coefficients
        end local 5 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] polynomials
        end local 4 // double[] m
        end local 3 // int n
        end local 2 // double[] y
        end local 1 // double[] x
        end local 0 // org.apache.commons.math3.analysis.interpolation.LinearInterpolator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   24     0          this  Lorg/apache/commons/math3/analysis/interpolation/LinearInterpolator;
            0   24     1             x  [D
            0   24     2             y  [D
            7   24     3             n  I
            9   24     4             m  [D
           10   14     5             i  I
           15   24     5   polynomials  [Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
           16   24     6  coefficients  [D
           17   23     7             i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.NonMonotonicSequenceException
    MethodParameters:
      Name  Flags
      x     
      y     

  public org.apache.commons.math3.analysis.UnivariateFunction interpolate(double[], double[]);
    descriptor: ([D[D)Lorg/apache/commons/math3/analysis/UnivariateFunction;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            aload 2
            invokevirtual org.apache.commons.math3.analysis.interpolation.LinearInterpolator.interpolate:([D[D)Lorg/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException, org.apache.commons.math3.exception.DimensionMismatchException
}
SourceFile: "LinearInterpolator.java"