public class org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator extends org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolator
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator
  super_class: org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolator
{
  private final org.apache.commons.math3.fitting.PolynomialFitter xFitter;
    descriptor: Lorg/apache/commons/math3/fitting/PolynomialFitter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int xDegree;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final org.apache.commons.math3.fitting.PolynomialFitter yFitter;
    descriptor: Lorg/apache/commons/math3/fitting/PolynomialFitter;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int yDegree;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
         0: .line 55
            aload 0 /* this */
            iconst_3
            invokespecial org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.<init>:(I)V
         1: .line 56
            return
        end local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
        start local 1 // int degree
         0: .line 64
            aload 0 /* this */
            iload 1 /* degree */
            iload 1 /* degree */
            invokespecial org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.<init>:(II)V
         1: .line 65
            return
        end local 1 // int degree
        end local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator;
            0    2     1  degree  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException
    MethodParameters:
        Name  Flags
      degree  

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
        start local 1 // int xDegree
        start local 2 // int yDegree
         0: .line 74
            aload 0 /* this */
            invokespecial org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolator.<init>:()V
         1: .line 76
            iload 1 /* xDegree */
            ifge 3
         2: .line 77
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            iload 1 /* xDegree */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         3: .line 79
      StackMap locals: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator int int
      StackMap stack:
            iload 2 /* yDegree */
            ifge 5
         4: .line 80
            new org.apache.commons.math3.exception.NotPositiveException
            dup
            iload 2 /* yDegree */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokespecial org.apache.commons.math3.exception.NotPositiveException.<init>:(Ljava/lang/Number;)V
            athrow
         5: .line 82
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* xDegree */
            putfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xDegree:I
         6: .line 83
            aload 0 /* this */
            iload 2 /* yDegree */
            putfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yDegree:I
         7: .line 87
            new org.apache.commons.math3.optim.SimpleVectorValueChecker
            dup
            ldc 100.0
            getstatic org.apache.commons.math3.util.Precision.EPSILON:D
            dmul
         8: .line 88
            ldc 100.0
            getstatic org.apache.commons.math3.util.Precision.SAFE_MIN:D
            dmul
         9: .line 87
            invokespecial org.apache.commons.math3.optim.SimpleVectorValueChecker.<init>:(DD)V
        10: .line 86
            astore 3 /* checker */
        start local 3 // org.apache.commons.math3.optim.SimpleVectorValueChecker checker
        11: .line 89
            aload 0 /* this */
            new org.apache.commons.math3.fitting.PolynomialFitter
            dup
            new org.apache.commons.math3.optim.nonlinear.vector.jacobian.GaussNewtonOptimizer
            dup
            iconst_0
            aload 3 /* checker */
            invokespecial org.apache.commons.math3.optim.nonlinear.vector.jacobian.GaussNewtonOptimizer.<init>:(ZLorg/apache/commons/math3/optim/ConvergenceChecker;)V
            invokespecial org.apache.commons.math3.fitting.PolynomialFitter.<init>:(Lorg/apache/commons/math3/optim/nonlinear/vector/MultivariateVectorOptimizer;)V
            putfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
        12: .line 90
            aload 0 /* this */
            new org.apache.commons.math3.fitting.PolynomialFitter
            dup
            new org.apache.commons.math3.optim.nonlinear.vector.jacobian.GaussNewtonOptimizer
            dup
            iconst_0
            aload 3 /* checker */
            invokespecial org.apache.commons.math3.optim.nonlinear.vector.jacobian.GaussNewtonOptimizer.<init>:(ZLorg/apache/commons/math3/optim/ConvergenceChecker;)V
            invokespecial org.apache.commons.math3.fitting.PolynomialFitter.<init>:(Lorg/apache/commons/math3/optim/nonlinear/vector/MultivariateVectorOptimizer;)V
            putfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
        13: .line 91
            return
        end local 3 // org.apache.commons.math3.optim.SimpleVectorValueChecker checker
        end local 2 // int yDegree
        end local 1 // int xDegree
        end local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator;
            0   14     1  xDegree  I
            0   14     2  yDegree  I
           11   14     3  checker  Lorg/apache/commons/math3/optim/SimpleVectorValueChecker;
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException
    MethodParameters:
         Name  Flags
      xDegree  
      yDegree  

  public org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolatingFunction interpolate(double[], double[], double[][]);
    descriptor: ([D[D[[D)Lorg/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=13, args_size=4
        start local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
        start local 1 // double[] xval
        start local 2 // double[] yval
        start local 3 // double[][] fval
         0: .line 102
            aload 1 /* xval */
            arraylength
            ifeq 1
            aload 2 /* yval */
            arraylength
            ifeq 1
            aload 3 /* fval */
            arraylength
            ifne 2
         1: .line 103
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.NoDataException
            dup
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:()V
            athrow
         2: .line 105
      StackMap locals:
      StackMap stack:
            aload 1 /* xval */
            arraylength
            aload 3 /* fval */
            arraylength
            if_icmpeq 4
         3: .line 106
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* xval */
            arraylength
            aload 3 /* fval */
            arraylength
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         4: .line 109
      StackMap locals:
      StackMap stack:
            aload 1 /* xval */
            arraylength
            istore 4 /* xLen */
        start local 4 // int xLen
         5: .line 110
            aload 2 /* yval */
            arraylength
            istore 5 /* yLen */
        start local 5 // int yLen
         6: .line 112
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         7: goto 11
         8: .line 113
      StackMap locals: int int int
      StackMap stack:
            aload 3 /* fval */
            iload 6 /* i */
            aaload
            arraylength
            iload 5 /* yLen */
            if_icmpeq 10
         9: .line 114
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 3 /* fval */
            iload 6 /* i */
            aaload
            arraylength
            iload 5 /* yLen */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
        10: .line 112
      StackMap locals:
      StackMap stack:
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            iload 4 /* xLen */
            if_icmplt 8
        end local 6 // int i
        12: .line 118
            aload 1 /* xval */
            invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([D)V
        13: .line 119
            aload 2 /* yval */
            invokestatic org.apache.commons.math3.util.MathArrays.checkOrder:([D)V
        14: .line 123
            iload 5 /* yLen */
            anewarray org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            astore 6 /* yPolyX */
        start local 6 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] yPolyX
        15: .line 124
            iconst_0
            istore 7 /* j */
        start local 7 // int j
        16: goto 25
        17: .line 125
      StackMap locals: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator double[] double[] double[][] int int org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.clearObservations:()V
        18: .line 126
            iconst_0
            istore 8 /* i */
        start local 8 // int i
        19: goto 22
        20: .line 127
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            dconst_1
            aload 1 /* xval */
            iload 8 /* i */
            daload
            aload 3 /* fval */
            iload 8 /* i */
            aaload
            iload 7 /* j */
            daload
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.addObservedPoint:(DDD)V
        21: .line 126
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 8 /* i */
            iload 4 /* xLen */
            if_icmplt 20
        end local 8 // int i
        23: .line 132
            aload 6 /* yPolyX */
            iload 7 /* j */
            new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.xDegree:I
            iconst_1
            iadd
            newarray 7
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.fit:([D)[D
            invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
            aastore
        24: .line 124
            iinc 7 /* j */ 1
      StackMap locals:
      StackMap stack:
        25: iload 7 /* j */
            iload 5 /* yLen */
            if_icmplt 17
        end local 7 // int j
        26: .line 137
            iload 4 /* xLen */
            iload 5 /* yLen */
            multianewarray [[D 2
            astore 7 /* fval_1 */
        start local 7 // double[][] fval_1
        27: .line 138
            iconst_0
            istore 8 /* j */
        start local 8 // int j
        28: goto 36
        29: .line 139
      StackMap locals: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator double[] double[] double[][] int int org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] double[][] int
      StackMap stack:
            aload 6 /* yPolyX */
            iload 8 /* j */
            aaload
            astore 9 /* f */
        start local 9 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction f
        30: .line 140
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        31: goto 34
        32: .line 141
      StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction int
      StackMap stack:
            aload 7 /* fval_1 */
            iload 10 /* i */
            aaload
            iload 8 /* j */
            aload 9 /* f */
            aload 1 /* xval */
            iload 10 /* i */
            daload
            invokevirtual org.apache.commons.math3.analysis.polynomials.PolynomialFunction.value:(D)D
            dastore
        33: .line 140
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        34: iload 10 /* i */
            iload 4 /* xLen */
            if_icmplt 32
        end local 10 // int i
        end local 9 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction f
        35: .line 138
            iinc 8 /* j */ 1
      StackMap locals:
      StackMap stack:
        36: iload 8 /* j */
            iload 5 /* yLen */
            if_icmplt 29
        end local 8 // int j
        37: .line 147
            iload 4 /* xLen */
            anewarray org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            astore 8 /* xPolyY */
        start local 8 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] xPolyY
        38: .line 148
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        39: goto 48
        40: .line 149
      StackMap locals: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator double[] double[] double[][] int int org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] double[][] org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.clearObservations:()V
        41: .line 150
            iconst_0
            istore 10 /* j */
        start local 10 // int j
        42: goto 45
        43: .line 151
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            dconst_1
            aload 2 /* yval */
            iload 10 /* j */
            daload
            aload 7 /* fval_1 */
            iload 9 /* i */
            aaload
            iload 10 /* j */
            daload
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.addObservedPoint:(DDD)V
        44: .line 150
            iinc 10 /* j */ 1
      StackMap locals:
      StackMap stack:
        45: iload 10 /* j */
            iload 5 /* yLen */
            if_icmplt 43
        end local 10 // int j
        46: .line 156
            aload 8 /* xPolyY */
            iload 9 /* i */
            new org.apache.commons.math3.analysis.polynomials.PolynomialFunction
            dup
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yFitter:Lorg/apache/commons/math3/fitting/PolynomialFitter;
            aload 0 /* this */
            getfield org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.yDegree:I
            iconst_1
            iadd
            newarray 7
            invokevirtual org.apache.commons.math3.fitting.PolynomialFitter.fit:([D)[D
            invokespecial org.apache.commons.math3.analysis.polynomials.PolynomialFunction.<init>:([D)V
            aastore
        47: .line 148
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        48: iload 9 /* i */
            iload 4 /* xLen */
            if_icmplt 40
        end local 9 // int i
        49: .line 161
            iload 4 /* xLen */
            iload 5 /* yLen */
            multianewarray [[D 2
            astore 9 /* fval_2 */
        start local 9 // double[][] fval_2
        50: .line 162
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        51: goto 59
        52: .line 163
      StackMap locals: org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator double[] double[] double[][] int int org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] double[][] org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] double[][] int
      StackMap stack:
            aload 8 /* xPolyY */
            iload 10 /* i */
            aaload
            astore 11 /* f */
        start local 11 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction f
        53: .line 164
            iconst_0
            istore 12 /* j */
        start local 12 // int j
        54: goto 57
        55: .line 165
      StackMap locals: org.apache.commons.math3.analysis.polynomials.PolynomialFunction int
      StackMap stack:
            aload 9 /* fval_2 */
            iload 10 /* i */
            aaload
            iload 12 /* j */
            aload 11 /* f */
            aload 2 /* yval */
            iload 12 /* j */
            daload
            invokevirtual org.apache.commons.math3.analysis.polynomials.PolynomialFunction.value:(D)D
            dastore
        56: .line 164
            iinc 12 /* j */ 1
      StackMap locals:
      StackMap stack:
        57: iload 12 /* j */
            iload 5 /* yLen */
            if_icmplt 55
        end local 12 // int j
        end local 11 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction f
        58: .line 162
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        59: iload 10 /* i */
            iload 4 /* xLen */
            if_icmplt 52
        end local 10 // int i
        60: .line 169
            aload 0 /* this */
            aload 1 /* xval */
            aload 2 /* yval */
            aload 9 /* fval_2 */
            invokespecial org.apache.commons.math3.analysis.interpolation.BicubicSplineInterpolator.interpolate:([D[D[[D)Lorg/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction;
            areturn
        end local 9 // double[][] fval_2
        end local 8 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] xPolyY
        end local 7 // double[][] fval_1
        end local 6 // org.apache.commons.math3.analysis.polynomials.PolynomialFunction[] yPolyX
        end local 5 // int yLen
        end local 4 // int xLen
        end local 3 // double[][] fval
        end local 2 // double[] yval
        end local 1 // double[] xval
        end local 0 // org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   61     0    this  Lorg/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator;
            0   61     1    xval  [D
            0   61     2    yval  [D
            0   61     3    fval  [[D
            5   61     4    xLen  I
            6   61     5    yLen  I
            7   12     6       i  I
           15   61     6  yPolyX  [Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
           16   26     7       j  I
           19   23     8       i  I
           27   61     7  fval_1  [[D
           28   37     8       j  I
           30   35     9       f  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
           31   35    10       i  I
           38   61     8  xPolyY  [Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
           39   49     9       i  I
           42   46    10       j  I
           50   61     9  fval_2  [[D
           51   60    10       i  I
           53   58    11       f  Lorg/apache/commons/math3/analysis/polynomials/PolynomialFunction;
           54   58    12       j  I
    Exceptions:
      throws org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NullArgumentException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NonMonotonicSequenceException
    MethodParameters:
      Name  Flags
      xval  final
      yval  final
      fval  final

  public org.apache.commons.math3.analysis.BivariateFunction interpolate(double[], double[], double[][]);
    descriptor: ([D[D[[D)Lorg/apache/commons/math3/analysis/BivariateFunction;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=4, locals=4, args_size=4
         0: .line 1
            aload 0
            aload 1
            aload 2
            aload 3
            invokevirtual org.apache.commons.math3.analysis.interpolation.SmoothingPolynomialBicubicSplineInterpolator.interpolate:([D[D[[D)Lorg/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NonMonotonicSequenceException, org.apache.commons.math3.exception.NumberIsTooSmallException
}
SourceFile: "SmoothingPolynomialBicubicSplineInterpolator.java"
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()