public class org.apache.commons.math3.linear.Array2DRowRealMatrix extends org.apache.commons.math3.linear.AbstractRealMatrix implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.linear.Array2DRowRealMatrix
  super_class: org.apache.commons.math3.linear.AbstractRealMatrix
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -1067294169172445528

  private double[][] data;
    descriptor: [[D
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 47
            aload 0 /* this */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.<init>:()V
            return
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public void <init>(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int rowDimension
        start local 2 // int columnDimension
         0: .line 60
            aload 0 /* this */
            iload 1 /* rowDimension */
            iload 2 /* columnDimension */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.<init>:(II)V
         1: .line 61
            aload 0 /* this */
            iload 1 /* rowDimension */
            iload 2 /* columnDimension */
            multianewarray [[D 2
            putfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
         2: .line 62
            return
        end local 2 // int columnDimension
        end local 1 // int rowDimension
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    3     0             this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    3     1     rowDimension  I
            0    3     2  columnDimension  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotStrictlyPositiveException
    MethodParameters:
                 Name  Flags
      rowDimension     final
      columnDimension  final

  public void <init>(double[][]);
    descriptor: ([[D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[][] d
         0: .line 77
            aload 0 /* this */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.<init>:()V
         1: .line 79
            aload 0 /* this */
            aload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.copyIn:([[D)V
         2: .line 80
            return
        end local 1 // double[][] d
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    3     1     d  [[D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      d     final

  public void <init>(double[][], boolean);
    descriptor: ([[DZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[][] d
        start local 2 // boolean copyArray
         0: .line 98
            aload 0 /* this */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.<init>:()V
         1: .line 101
            iload 2 /* copyArray */
            ifeq 4
         2: .line 102
            aload 0 /* this */
            aload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.copyIn:([[D)V
         3: .line 103
            goto 19
         4: .line 104
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix double[][] int
      StackMap stack:
            aload 1 /* d */
            ifnonnull 6
         5: .line 105
            new org.apache.commons.math3.exception.NullArgumentException
            dup
            invokespecial org.apache.commons.math3.exception.NullArgumentException.<init>:()V
            athrow
         6: .line 107
      StackMap locals:
      StackMap stack:
            aload 1 /* d */
            arraylength
            istore 3 /* nRows */
        start local 3 // int nRows
         7: .line 108
            iload 3 /* nRows */
            ifne 9
         8: .line 109
            new org.apache.commons.math3.exception.NoDataException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.AT_LEAST_ONE_ROW:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;)V
            athrow
         9: .line 111
      StackMap locals: int
      StackMap stack:
            aload 1 /* d */
            iconst_0
            aaload
            arraylength
            istore 4 /* nCols */
        start local 4 // int nCols
        10: .line 112
            iload 4 /* nCols */
            ifne 12
        11: .line 113
            new org.apache.commons.math3.exception.NoDataException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.AT_LEAST_ONE_COLUMN:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;)V
            athrow
        12: .line 115
      StackMap locals: int
      StackMap stack:
            iconst_1
            istore 5 /* r */
        start local 5 // int r
        13: goto 17
        14: .line 116
      StackMap locals: int
      StackMap stack:
            aload 1 /* d */
            iload 5 /* r */
            aaload
            arraylength
            iload 4 /* nCols */
            if_icmpeq 16
        15: .line 117
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* d */
            iload 5 /* r */
            aaload
            arraylength
            iload 4 /* nCols */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
        16: .line 115
      StackMap locals:
      StackMap stack:
            iinc 5 /* r */ 1
      StackMap locals:
      StackMap stack:
        17: iload 5 /* r */
            iload 3 /* nRows */
            if_icmplt 14
        end local 5 // int r
        18: .line 120
            aload 0 /* this */
            aload 1 /* d */
            putfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
        end local 4 // int nCols
        end local 3 // int nRows
        19: .line 122
      StackMap locals:
      StackMap stack:
            return
        end local 2 // boolean copyArray
        end local 1 // double[][] d
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   20     1          d  [[D
            0   20     2  copyArray  Z
            7   19     3      nRows  I
           10   19     4      nCols  I
           13   18     5          r  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
           Name  Flags
      d          final
      copyArray  final

  public void <init>(double[]);
    descriptor: ([D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[] v
         0: .line 131
            aload 0 /* this */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.<init>:()V
         1: .line 132
            aload 1 /* v */
            arraylength
            istore 2 /* nRows */
        start local 2 // int nRows
         2: .line 133
            aload 0 /* this */
            iload 2 /* nRows */
            iconst_1
            multianewarray [[D 2
            putfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
         3: .line 134
            iconst_0
            istore 3 /* row */
        start local 3 // int row
         4: goto 7
         5: .line 135
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix double[] int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 3 /* row */
            aaload
            iconst_0
            aload 1 /* v */
            iload 3 /* row */
            daload
            dastore
         6: .line 134
            iinc 3 /* row */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* row */
            iload 2 /* nRows */
            if_icmplt 5
        end local 3 // int row
         8: .line 137
            return
        end local 2 // int nRows
        end local 1 // double[] v
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    9     1      v  [D
            2    9     2  nRows  I
            4    8     3    row  I
    MethodParameters:
      Name  Flags
      v     final

  public org.apache.commons.math3.linear.RealMatrix createMatrix(int, int);
    descriptor: (II)Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int rowDimension
        start local 2 // int columnDimension
         0: .line 144
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            iload 1 /* rowDimension */
            iload 2 /* columnDimension */
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:(II)V
            areturn
        end local 2 // int columnDimension
        end local 1 // int rowDimension
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    1     0             this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    1     1     rowDimension  I
            0    1     2  columnDimension  I
    Exceptions:
      throws org.apache.commons.math3.exception.NotStrictlyPositiveException
    MethodParameters:
                 Name  Flags
      rowDimension     final
      columnDimension  final

  public org.apache.commons.math3.linear.RealMatrix copy();
    descriptor: ()Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 150
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.copyOut:()[[D
            iconst_0
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:([[DZ)V
            areturn
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public org.apache.commons.math3.linear.Array2DRowRealMatrix add(org.apache.commons.math3.linear.Array2DRowRealMatrix);
    descriptor: (Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;)Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
         0: .line 164
            aload 0 /* this */
            aload 1 /* m */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkAdditionCompatible:(Lorg/apache/commons/math3/linear/AnyMatrix;Lorg/apache/commons/math3/linear/AnyMatrix;)V
         1: .line 166
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rowCount */
        start local 2 // int rowCount
         2: .line 167
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columnCount */
        start local 3 // int columnCount
         3: .line 168
            iload 2 /* rowCount */
            iload 3 /* columnCount */
            multianewarray [[D 2
            astore 4 /* outData */
        start local 4 // double[][] outData
         4: .line 169
            iconst_0
            istore 5 /* row */
        start local 5 // int row
         5: goto 15
         6: .line 170
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* row */
            aaload
            astore 6 /* dataRow */
        start local 6 // double[] dataRow
         7: .line 171
            aload 1 /* m */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* row */
            aaload
            astore 7 /* mRow */
        start local 7 // double[] mRow
         8: .line 172
            aload 4 /* outData */
            iload 5 /* row */
            aaload
            astore 8 /* outDataRow */
        start local 8 // double[] outDataRow
         9: .line 173
            iconst_0
            istore 9 /* col */
        start local 9 // int col
        10: goto 13
        11: .line 174
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int double[] double[] double[] int
      StackMap stack:
            aload 8 /* outDataRow */
            iload 9 /* col */
            aload 6 /* dataRow */
            iload 9 /* col */
            daload
            aload 7 /* mRow */
            iload 9 /* col */
            daload
            dadd
            dastore
        12: .line 173
            iinc 9 /* col */ 1
      StackMap locals:
      StackMap stack:
        13: iload 9 /* col */
            iload 3 /* columnCount */
            if_icmplt 11
        end local 9 // int col
        end local 8 // double[] outDataRow
        end local 7 // double[] mRow
        end local 6 // double[] dataRow
        14: .line 169
            iinc 5 /* row */ 1
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int
      StackMap stack:
        15: iload 5 /* row */
            iload 2 /* rowCount */
            if_icmplt 6
        end local 5 // int row
        16: .line 178
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            aload 4 /* outData */
            iconst_0
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:([[DZ)V
            areturn
        end local 4 // double[][] outData
        end local 3 // int columnCount
        end local 2 // int rowCount
        end local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   17     1            m  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            2   17     2     rowCount  I
            3   17     3  columnCount  I
            4   17     4      outData  [[D
            5   16     5          row  I
            7   14     6      dataRow  [D
            8   14     7         mRow  [D
            9   14     8   outDataRow  [D
           10   14     9          col  I
    Exceptions:
      throws org.apache.commons.math3.linear.MatrixDimensionMismatchException
    MethodParameters:
      Name  Flags
      m     final

  public org.apache.commons.math3.linear.Array2DRowRealMatrix subtract(org.apache.commons.math3.linear.Array2DRowRealMatrix);
    descriptor: (Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;)Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
         0: .line 191
            aload 0 /* this */
            aload 1 /* m */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkSubtractionCompatible:(Lorg/apache/commons/math3/linear/AnyMatrix;Lorg/apache/commons/math3/linear/AnyMatrix;)V
         1: .line 193
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rowCount */
        start local 2 // int rowCount
         2: .line 194
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columnCount */
        start local 3 // int columnCount
         3: .line 195
            iload 2 /* rowCount */
            iload 3 /* columnCount */
            multianewarray [[D 2
            astore 4 /* outData */
        start local 4 // double[][] outData
         4: .line 196
            iconst_0
            istore 5 /* row */
        start local 5 // int row
         5: goto 15
         6: .line 197
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* row */
            aaload
            astore 6 /* dataRow */
        start local 6 // double[] dataRow
         7: .line 198
            aload 1 /* m */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* row */
            aaload
            astore 7 /* mRow */
        start local 7 // double[] mRow
         8: .line 199
            aload 4 /* outData */
            iload 5 /* row */
            aaload
            astore 8 /* outDataRow */
        start local 8 // double[] outDataRow
         9: .line 200
            iconst_0
            istore 9 /* col */
        start local 9 // int col
        10: goto 13
        11: .line 201
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int double[] double[] double[] int
      StackMap stack:
            aload 8 /* outDataRow */
            iload 9 /* col */
            aload 6 /* dataRow */
            iload 9 /* col */
            daload
            aload 7 /* mRow */
            iload 9 /* col */
            daload
            dsub
            dastore
        12: .line 200
            iinc 9 /* col */ 1
      StackMap locals:
      StackMap stack:
        13: iload 9 /* col */
            iload 3 /* columnCount */
            if_icmplt 11
        end local 9 // int col
        end local 8 // double[] outDataRow
        end local 7 // double[] mRow
        end local 6 // double[] dataRow
        14: .line 196
            iinc 5 /* row */ 1
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int double[][] int
      StackMap stack:
        15: iload 5 /* row */
            iload 2 /* rowCount */
            if_icmplt 6
        end local 5 // int row
        16: .line 205
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            aload 4 /* outData */
            iconst_0
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:([[DZ)V
            areturn
        end local 4 // double[][] outData
        end local 3 // int columnCount
        end local 2 // int rowCount
        end local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   17     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   17     1            m  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            2   17     2     rowCount  I
            3   17     3  columnCount  I
            4   17     4      outData  [[D
            5   16     5          row  I
            7   14     6      dataRow  [D
            8   14     7         mRow  [D
            9   14     8   outDataRow  [D
           10   14     9          col  I
    Exceptions:
      throws org.apache.commons.math3.linear.MatrixDimensionMismatchException
    MethodParameters:
      Name  Flags
      m     final

  public org.apache.commons.math3.linear.Array2DRowRealMatrix multiply(org.apache.commons.math3.linear.Array2DRowRealMatrix);
    descriptor: (Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;)Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=14, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
         0: .line 218
            aload 0 /* this */
            aload 1 /* m */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkMultiplicationCompatible:(Lorg/apache/commons/math3/linear/AnyMatrix;Lorg/apache/commons/math3/linear/AnyMatrix;)V
         1: .line 220
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* nRows */
        start local 2 // int nRows
         2: .line 221
            aload 1 /* m */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* nCols */
        start local 3 // int nCols
         3: .line 222
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 4 /* nSum */
        start local 4 // int nSum
         4: .line 224
            iload 2 /* nRows */
            iload 3 /* nCols */
            multianewarray [[D 2
            astore 5 /* outData */
        start local 5 // double[][] outData
         5: .line 226
            iload 4 /* nSum */
            newarray 7
            astore 6 /* mCol */
        start local 6 // double[] mCol
         6: .line 227
            aload 1 /* m */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            astore 7 /* mData */
        start local 7 // double[][] mData
         7: .line 230
            iconst_0
            istore 8 /* col */
        start local 8 // int col
         8: goto 27
         9: .line 233
      StackMap locals: org.apache.commons.math3.linear.Array2DRowRealMatrix org.apache.commons.math3.linear.Array2DRowRealMatrix int int int double[][] double[] double[][] int
      StackMap stack:
            iconst_0
            istore 9 /* mRow */
        start local 9 // int mRow
        10: goto 13
        11: .line 234
      StackMap locals: int
      StackMap stack:
            aload 6 /* mCol */
            iload 9 /* mRow */
            aload 7 /* mData */
            iload 9 /* mRow */
            aaload
            iload 8 /* col */
            daload
            dastore
        12: .line 233
            iinc 9 /* mRow */ 1
      StackMap locals:
      StackMap stack:
        13: iload 9 /* mRow */
            iload 4 /* nSum */
            if_icmplt 11
        end local 9 // int mRow
        14: .line 237
            iconst_0
            istore 9 /* row */
        start local 9 // int row
        15: goto 25
        16: .line 238
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 9 /* row */
            aaload
            astore 10 /* dataRow */
        start local 10 // double[] dataRow
        17: .line 239
            dconst_0
            dstore 11 /* sum */
        start local 11 // double sum
        18: .line 240
            iconst_0
            istore 13 /* i */
        start local 13 // int i
        19: goto 22
        20: .line 241
      StackMap locals: double[] double int
      StackMap stack:
            dload 11 /* sum */
            aload 10 /* dataRow */
            iload 13 /* i */
            daload
            aload 6 /* mCol */
            iload 13 /* i */
            daload
            dmul
            dadd
            dstore 11 /* sum */
        21: .line 240
            iinc 13 /* i */ 1
      StackMap locals:
      StackMap stack:
        22: iload 13 /* i */
            iload 4 /* nSum */
            if_icmplt 20
        end local 13 // int i
        23: .line 243
            aload 5 /* outData */
            iload 9 /* row */
            aaload
            iload 8 /* col */
            dload 11 /* sum */
            dastore
        end local 11 // double sum
        end local 10 // double[] dataRow
        24: .line 237
            iinc 9 /* row */ 1
      StackMap locals:
      StackMap stack:
        25: iload 9 /* row */
            iload 2 /* nRows */
            if_icmplt 16
        end local 9 // int row
        26: .line 230
            iinc 8 /* col */ 1
      StackMap locals:
      StackMap stack:
        27: iload 8 /* col */
            iload 3 /* nCols */
            if_icmplt 9
        end local 8 // int col
        28: .line 247
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            aload 5 /* outData */
            iconst_0
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:([[DZ)V
            areturn
        end local 7 // double[][] mData
        end local 6 // double[] mCol
        end local 5 // double[][] outData
        end local 4 // int nSum
        end local 3 // int nCols
        end local 2 // int nRows
        end local 1 // org.apache.commons.math3.linear.Array2DRowRealMatrix m
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   29     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   29     1        m  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            2   29     2    nRows  I
            3   29     3    nCols  I
            4   29     4     nSum  I
            5   29     5  outData  [[D
            6   29     6     mCol  [D
            7   29     7    mData  [[D
            8   28     8      col  I
           10   14     9     mRow  I
           15   26     9      row  I
           17   24    10  dataRow  [D
           18   24    11      sum  D
           19   23    13        i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      m     final

  public double[][] getData();
    descriptor: ()[[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 253
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.copyOut:()[[D
            areturn
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public double[][] getDataRef();
    descriptor: ()[[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 262
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            areturn
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public void setSubMatrix(double[][], int, int);
    descriptor: ([[DII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=4
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[][] subMatrix
        start local 2 // int row
        start local 3 // int column
         0: .line 271
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            ifnonnull 21
         1: .line 272
            iload 2 /* row */
            ifle 3
         2: .line 273
            new org.apache.commons.math3.exception.MathIllegalStateException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.FIRST_ROWS_NOT_INITIALIZED_YET:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 2 /* row */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokespecial org.apache.commons.math3.exception.MathIllegalStateException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         3: .line 275
      StackMap locals:
      StackMap stack:
            iload 3 /* column */
            ifle 5
         4: .line 276
            new org.apache.commons.math3.exception.MathIllegalStateException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.FIRST_COLUMNS_NOT_INITIALIZED_YET:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            iload 3 /* column */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            invokespecial org.apache.commons.math3.exception.MathIllegalStateException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         5: .line 278
      StackMap locals:
      StackMap stack:
            aload 1 /* subMatrix */
            invokestatic org.apache.commons.math3.util.MathUtils.checkNotNull:(Ljava/lang/Object;)V
         6: .line 279
            aload 1 /* subMatrix */
            arraylength
            istore 4 /* nRows */
        start local 4 // int nRows
         7: .line 280
            iload 4 /* nRows */
            ifne 9
         8: .line 281
            new org.apache.commons.math3.exception.NoDataException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.AT_LEAST_ONE_ROW:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;)V
            athrow
         9: .line 284
      StackMap locals: int
      StackMap stack:
            aload 1 /* subMatrix */
            iconst_0
            aaload
            arraylength
            istore 5 /* nCols */
        start local 5 // int nCols
        10: .line 285
            iload 5 /* nCols */
            ifne 12
        11: .line 286
            new org.apache.commons.math3.exception.NoDataException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.AT_LEAST_ONE_COLUMN:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            invokespecial org.apache.commons.math3.exception.NoDataException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;)V
            athrow
        12: .line 288
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* subMatrix */
            arraylength
            iload 5 /* nCols */
            multianewarray [[D 2
            putfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
        13: .line 289
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        14: goto 19
        15: .line 290
      StackMap locals: int
      StackMap stack:
            aload 1 /* subMatrix */
            iload 6 /* i */
            aaload
            arraylength
            iload 5 /* nCols */
            if_icmpeq 17
        16: .line 291
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* subMatrix */
            iload 6 /* i */
            aaload
            arraylength
            iload 5 /* nCols */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
        17: .line 293
      StackMap locals:
      StackMap stack:
            aload 1 /* subMatrix */
            iload 6 /* i */
            aaload
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 6 /* i */
            iload 2 /* row */
            iadd
            aaload
            iload 3 /* column */
            iload 5 /* nCols */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        18: .line 289
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            arraylength
            if_icmplt 15
        end local 6 // int i
        end local 5 // int nCols
        end local 4 // int nRows
        20: .line 295
            goto 22
        21: .line 296
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* subMatrix */
            iload 2 /* row */
            iload 3 /* column */
            invokespecial org.apache.commons.math3.linear.AbstractRealMatrix.setSubMatrix:([[DII)V
        22: .line 299
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int column
        end local 2 // int row
        end local 1 // double[][] subMatrix
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   23     0       this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   23     1  subMatrix  [[D
            0   23     2        row  I
            0   23     3     column  I
            7   20     4      nRows  I
           10   20     5      nCols  I
           14   20     6          i  I
    Exceptions:
      throws org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
           Name  Flags
      subMatrix  final
      row        final
      column     final

  public double getEntry(int, int);
    descriptor: (II)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int row
        start local 2 // int column
         0: .line 305
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* column */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;II)V
         1: .line 306
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 1 /* row */
            aaload
            iload 2 /* column */
            daload
            dreturn
        end local 2 // int column
        end local 1 // int row
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    2     1     row  I
            0    2     2  column  I
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
        Name  Flags
      row     final
      column  final

  public void setEntry(int, int, double);
    descriptor: (IID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int row
        start local 2 // int column
        start local 3 // double value
         0: .line 313
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* column */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;II)V
         1: .line 314
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 1 /* row */
            aaload
            iload 2 /* column */
            dload 3 /* value */
            dastore
         2: .line 315
            return
        end local 3 // double value
        end local 2 // int column
        end local 1 // int row
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    3     1     row  I
            0    3     2  column  I
            0    3     3   value  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
        Name  Flags
      row     final
      column  final
      value   final

  public void addToEntry(int, int, double);
    descriptor: (IID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int row
        start local 2 // int column
        start local 3 // double increment
         0: .line 322
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* column */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;II)V
         1: .line 323
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 1 /* row */
            aaload
            iload 2 /* column */
            dup2
            daload
            dload 3 /* increment */
            dadd
            dastore
         2: .line 324
            return
        end local 3 // double increment
        end local 2 // int column
        end local 1 // int row
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    3     1        row  I
            0    3     2     column  I
            0    3     3  increment  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
           Name  Flags
      row        final
      column     final
      increment  final

  public void multiplyEntry(int, int, double);
    descriptor: (IID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // int row
        start local 2 // int column
        start local 3 // double factor
         0: .line 331
            aload 0 /* this */
            iload 1 /* row */
            iload 2 /* column */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;II)V
         1: .line 332
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 1 /* row */
            aaload
            iload 2 /* column */
            dup2
            daload
            dload 3 /* factor */
            dmul
            dastore
         2: .line 333
            return
        end local 3 // double factor
        end local 2 // int column
        end local 1 // int row
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    3     1     row  I
            0    3     2  column  I
            0    3     3  factor  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
        Name  Flags
      row     final
      column  final
      factor  final

  public int getRowDimension();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 338
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            ifnonnull 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            arraylength
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public int getColumnDimension();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 344
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            ifnull 1
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iconst_0
            aaload
            ifnonnull 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
            goto 3
      StackMap locals:
      StackMap stack:
         2: aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iconst_0
            aaload
            arraylength
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;

  public double[] operate(double[]);
    descriptor: ([D)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=10, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[] v
         0: .line 351
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* nRows */
        start local 2 // int nRows
         1: .line 352
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* nCols */
        start local 3 // int nCols
         2: .line 353
            aload 1 /* v */
            arraylength
            iload 3 /* nCols */
            if_icmpeq 4
         3: .line 354
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* v */
            arraylength
            iload 3 /* nCols */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         4: .line 356
      StackMap locals: int int
      StackMap stack:
            iload 2 /* nRows */
            newarray 7
            astore 4 /* out */
        start local 4 // double[] out
         5: .line 357
            iconst_0
            istore 5 /* row */
        start local 5 // int row
         6: goto 16
         7: .line 358
      StackMap locals: double[] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* row */
            aaload
            astore 6 /* dataRow */
        start local 6 // double[] dataRow
         8: .line 359
            dconst_0
            dstore 7 /* sum */
        start local 7 // double sum
         9: .line 360
            iconst_0
            istore 9 /* i */
        start local 9 // int i
        10: goto 13
        11: .line 361
      StackMap locals: double[] double int
      StackMap stack:
            dload 7 /* sum */
            aload 6 /* dataRow */
            iload 9 /* i */
            daload
            aload 1 /* v */
            iload 9 /* i */
            daload
            dmul
            dadd
            dstore 7 /* sum */
        12: .line 360
            iinc 9 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 9 /* i */
            iload 3 /* nCols */
            if_icmplt 11
        end local 9 // int i
        14: .line 363
            aload 4 /* out */
            iload 5 /* row */
            dload 7 /* sum */
            dastore
        end local 7 // double sum
        end local 6 // double[] dataRow
        15: .line 357
            iinc 5 /* row */ 1
      StackMap locals:
      StackMap stack:
        16: iload 5 /* row */
            iload 2 /* nRows */
            if_icmplt 7
        end local 5 // int row
        17: .line 365
            aload 4 /* out */
            areturn
        end local 4 // double[] out
        end local 3 // int nCols
        end local 2 // int nRows
        end local 1 // double[] v
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   18     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   18     1        v  [D
            1   18     2    nRows  I
            2   18     3    nCols  I
            5   18     4      out  [D
            6   17     5      row  I
            8   15     6  dataRow  [D
            9   15     7      sum  D
           10   14     9        i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     final

  public double[] preMultiply(double[]);
    descriptor: ([D)[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[] v
         0: .line 372
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* nRows */
        start local 2 // int nRows
         1: .line 373
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* nCols */
        start local 3 // int nCols
         2: .line 374
            aload 1 /* v */
            arraylength
            iload 2 /* nRows */
            if_icmpeq 4
         3: .line 375
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            aload 1 /* v */
            arraylength
            iload 2 /* nRows */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         4: .line 378
      StackMap locals: int int
      StackMap stack:
            iload 3 /* nCols */
            newarray 7
            astore 4 /* out */
        start local 4 // double[] out
         5: .line 379
            iconst_0
            istore 5 /* col */
        start local 5 // int col
         6: goto 15
         7: .line 380
      StackMap locals: double[] int
      StackMap stack:
            dconst_0
            dstore 6 /* sum */
        start local 6 // double sum
         8: .line 381
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         9: goto 12
        10: .line 382
      StackMap locals: double int
      StackMap stack:
            dload 6 /* sum */
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 8 /* i */
            aaload
            iload 5 /* col */
            daload
            aload 1 /* v */
            iload 8 /* i */
            daload
            dmul
            dadd
            dstore 6 /* sum */
        11: .line 381
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 8 /* i */
            iload 2 /* nRows */
            if_icmplt 10
        end local 8 // int i
        13: .line 384
            aload 4 /* out */
            iload 5 /* col */
            dload 6 /* sum */
            dastore
        end local 6 // double sum
        14: .line 379
            iinc 5 /* col */ 1
      StackMap locals:
      StackMap stack:
        15: iload 5 /* col */
            iload 3 /* nCols */
            if_icmplt 7
        end local 5 // int col
        16: .line 387
            aload 4 /* out */
            areturn
        end local 4 // double[] out
        end local 3 // int nCols
        end local 2 // int nRows
        end local 1 // double[] v
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   17     1      v  [D
            1   17     2  nRows  I
            2   17     3  nCols  I
            5   17     4    out  [D
            6   16     5    col  I
            8   14     6    sum  D
            9   13     8      i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     final

  public double walkInRowOrder(org.apache.commons.math3.linear.RealMatrixChangingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
         0: .line 394
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rows */
        start local 2 // int rows
         1: .line 395
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columns */
        start local 3 // int columns
         2: .line 396
            aload 1 /* visitor */
            iload 2 /* rows */
            iload 3 /* columns */
            iconst_0
            iload 2 /* rows */
            iconst_1
            isub
            iconst_0
            iload 3 /* columns */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.start:(IIIIII)V
         3: .line 397
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 12
         5: .line 398
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 4 /* i */
            aaload
            astore 5 /* rowI */
        start local 5 // double[] rowI
         6: .line 399
            iconst_0
            istore 6 /* j */
        start local 6 // int j
         7: goto 10
         8: .line 400
      StackMap locals: double[] int
      StackMap stack:
            aload 5 /* rowI */
            iload 6 /* j */
            aload 1 /* visitor */
            iload 4 /* i */
            iload 6 /* j */
            aload 5 /* rowI */
            iload 6 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.visit:(IID)D
            dastore
         9: .line 399
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        10: iload 6 /* j */
            iload 3 /* columns */
            if_icmplt 8
        end local 6 // int j
        end local 5 // double[] rowI
        11: .line 397
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* rows */
            if_icmplt 5
        end local 4 // int i
        13: .line 403
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.end:()D
            dreturn
        end local 3 // int columns
        end local 2 // int rows
        end local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   14     1  visitor  Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;
            1   14     2     rows  I
            2   14     3  columns  I
            4   13     4        i  I
            6   11     5     rowI  [D
            7   11     6        j  I
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInRowOrder(org.apache.commons.math3.linear.RealMatrixPreservingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
         0: .line 409
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rows */
        start local 2 // int rows
         1: .line 410
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columns */
        start local 3 // int columns
         2: .line 411
            aload 1 /* visitor */
            iload 2 /* rows */
            iload 3 /* columns */
            iconst_0
            iload 2 /* rows */
            iconst_1
            isub
            iconst_0
            iload 3 /* columns */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.start:(IIIIII)V
         3: .line 412
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 12
         5: .line 413
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 4 /* i */
            aaload
            astore 5 /* rowI */
        start local 5 // double[] rowI
         6: .line 414
            iconst_0
            istore 6 /* j */
        start local 6 // int j
         7: goto 10
         8: .line 415
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* visitor */
            iload 4 /* i */
            iload 6 /* j */
            aload 5 /* rowI */
            iload 6 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.visit:(IID)V
         9: .line 414
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        10: iload 6 /* j */
            iload 3 /* columns */
            if_icmplt 8
        end local 6 // int j
        end local 5 // double[] rowI
        11: .line 412
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* i */
            iload 2 /* rows */
            if_icmplt 5
        end local 4 // int i
        13: .line 418
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.end:()D
            dreturn
        end local 3 // int columns
        end local 2 // int rows
        end local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   14     1  visitor  Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;
            1   14     2     rows  I
            2   14     3  columns  I
            4   13     4        i  I
            6   11     5     rowI  [D
            7   11     6        j  I
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInRowOrder(org.apache.commons.math3.linear.RealMatrixChangingVisitor, int, int, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;IIII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        start local 2 // int startRow
        start local 3 // int endRow
        start local 4 // int startColumn
        start local 5 // int endColumn
         0: .line 427
            aload 0 /* this */
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkSubMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;IIII)V
         1: .line 428
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
         2: .line 429
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
         3: .line 428
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.start:(IIIIII)V
         4: .line 430
            iload 2 /* startRow */
            istore 6 /* i */
        start local 6 // int i
         5: goto 13
         6: .line 431
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 6 /* i */
            aaload
            astore 7 /* rowI */
        start local 7 // double[] rowI
         7: .line 432
            iload 4 /* startColumn */
            istore 8 /* j */
        start local 8 // int j
         8: goto 11
         9: .line 433
      StackMap locals: double[] int
      StackMap stack:
            aload 7 /* rowI */
            iload 8 /* j */
            aload 1 /* visitor */
            iload 6 /* i */
            iload 8 /* j */
            aload 7 /* rowI */
            iload 8 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.visit:(IID)D
            dastore
        10: .line 432
            iinc 8 /* j */ 1
      StackMap locals:
      StackMap stack:
        11: iload 8 /* j */
            iload 5 /* endColumn */
            if_icmple 9
        end local 8 // int j
        end local 7 // double[] rowI
        12: .line 430
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            iload 3 /* endRow */
            if_icmple 6
        end local 6 // int i
        14: .line 436
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.end:()D
            dreturn
        end local 5 // int endColumn
        end local 4 // int startColumn
        end local 3 // int endRow
        end local 2 // int startRow
        end local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   15     1      visitor  Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;
            0   15     2     startRow  I
            0   15     3       endRow  I
            0   15     4  startColumn  I
            0   15     5    endColumn  I
            5   14     6            i  I
            7   12     7         rowI  [D
            8   12     8            j  I
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
             Name  Flags
      visitor      final
      startRow     final
      endRow       final
      startColumn  final
      endColumn    final

  public double walkInRowOrder(org.apache.commons.math3.linear.RealMatrixPreservingVisitor, int, int, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;IIII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        start local 2 // int startRow
        start local 3 // int endRow
        start local 4 // int startColumn
        start local 5 // int endColumn
         0: .line 445
            aload 0 /* this */
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkSubMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;IIII)V
         1: .line 446
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
         2: .line 447
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
         3: .line 446
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.start:(IIIIII)V
         4: .line 448
            iload 2 /* startRow */
            istore 6 /* i */
        start local 6 // int i
         5: goto 13
         6: .line 449
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 6 /* i */
            aaload
            astore 7 /* rowI */
        start local 7 // double[] rowI
         7: .line 450
            iload 4 /* startColumn */
            istore 8 /* j */
        start local 8 // int j
         8: goto 11
         9: .line 451
      StackMap locals: double[] int
      StackMap stack:
            aload 1 /* visitor */
            iload 6 /* i */
            iload 8 /* j */
            aload 7 /* rowI */
            iload 8 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.visit:(IID)V
        10: .line 450
            iinc 8 /* j */ 1
      StackMap locals:
      StackMap stack:
        11: iload 8 /* j */
            iload 5 /* endColumn */
            if_icmple 9
        end local 8 // int j
        end local 7 // double[] rowI
        12: .line 448
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* i */
            iload 3 /* endRow */
            if_icmple 6
        end local 6 // int i
        14: .line 454
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.end:()D
            dreturn
        end local 5 // int endColumn
        end local 4 // int startColumn
        end local 3 // int endRow
        end local 2 // int startRow
        end local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   15     1      visitor  Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;
            0   15     2     startRow  I
            0   15     3       endRow  I
            0   15     4  startColumn  I
            0   15     5    endColumn  I
            5   14     6            i  I
            7   12     7         rowI  [D
            8   12     8            j  I
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
             Name  Flags
      visitor      final
      startRow     final
      endRow       final
      startColumn  final
      endColumn    final

  public double walkInColumnOrder(org.apache.commons.math3.linear.RealMatrixChangingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
         0: .line 460
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rows */
        start local 2 // int rows
         1: .line 461
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columns */
        start local 3 // int columns
         2: .line 462
            aload 1 /* visitor */
            iload 2 /* rows */
            iload 3 /* columns */
            iconst_0
            iload 2 /* rows */
            iconst_1
            isub
            iconst_0
            iload 3 /* columns */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.start:(IIIIII)V
         3: .line 463
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         4: goto 12
         5: .line 464
      StackMap locals: int int int
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 10
         7: .line 465
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* i */
            aaload
            astore 6 /* rowI */
        start local 6 // double[] rowI
         8: .line 466
            aload 6 /* rowI */
            iload 4 /* j */
            aload 1 /* visitor */
            iload 5 /* i */
            iload 4 /* j */
            aload 6 /* rowI */
            iload 4 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.visit:(IID)D
            dastore
        end local 6 // double[] rowI
         9: .line 464
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 5 /* i */
            iload 2 /* rows */
            if_icmplt 7
        end local 5 // int i
        11: .line 463
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 4 /* j */
            iload 3 /* columns */
            if_icmplt 5
        end local 4 // int j
        13: .line 469
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.end:()D
            dreturn
        end local 3 // int columns
        end local 2 // int rows
        end local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   14     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   14     1  visitor  Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;
            1   14     2     rows  I
            2   14     3  columns  I
            4   13     4        j  I
            6   11     5        i  I
            8    9     6     rowI  [D
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInColumnOrder(org.apache.commons.math3.linear.RealMatrixPreservingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
         0: .line 475
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 2 /* rows */
        start local 2 // int rows
         1: .line 476
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            istore 3 /* columns */
        start local 3 // int columns
         2: .line 477
            aload 1 /* visitor */
            iload 2 /* rows */
            iload 3 /* columns */
            iconst_0
            iload 2 /* rows */
            iconst_1
            isub
            iconst_0
            iload 3 /* columns */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.start:(IIIIII)V
         3: .line 478
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         4: goto 11
         5: .line 479
      StackMap locals: int int int
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 9
         7: .line 480
      StackMap locals: int
      StackMap stack:
            aload 1 /* visitor */
            iload 5 /* i */
            iload 4 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 5 /* i */
            aaload
            iload 4 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.visit:(IID)V
         8: .line 479
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 5 /* i */
            iload 2 /* rows */
            if_icmplt 7
        end local 5 // int i
        10: .line 478
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        11: iload 4 /* j */
            iload 3 /* columns */
            if_icmplt 5
        end local 4 // int j
        12: .line 483
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.end:()D
            dreturn
        end local 3 // int columns
        end local 2 // int rows
        end local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   13     0     this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   13     1  visitor  Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;
            1   13     2     rows  I
            2   13     3  columns  I
            4   12     4        j  I
            6   10     5        i  I
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInColumnOrder(org.apache.commons.math3.linear.RealMatrixChangingVisitor, int, int, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;IIII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=6
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        start local 2 // int startRow
        start local 3 // int endRow
        start local 4 // int startColumn
        start local 5 // int endColumn
         0: .line 492
            aload 0 /* this */
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkSubMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;IIII)V
         1: .line 493
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
         2: .line 494
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
         3: .line 493
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.start:(IIIIII)V
         4: .line 495
            iload 4 /* startColumn */
            istore 6 /* j */
        start local 6 // int j
         5: goto 13
         6: .line 496
      StackMap locals: int
      StackMap stack:
            iload 2 /* startRow */
            istore 7 /* i */
        start local 7 // int i
         7: goto 11
         8: .line 497
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 7 /* i */
            aaload
            astore 8 /* rowI */
        start local 8 // double[] rowI
         9: .line 498
            aload 8 /* rowI */
            iload 6 /* j */
            aload 1 /* visitor */
            iload 7 /* i */
            iload 6 /* j */
            aload 8 /* rowI */
            iload 6 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.visit:(IID)D
            dastore
        end local 8 // double[] rowI
        10: .line 496
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 7 /* i */
            iload 3 /* endRow */
            if_icmple 8
        end local 7 // int i
        12: .line 495
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        13: iload 6 /* j */
            iload 5 /* endColumn */
            if_icmple 6
        end local 6 // int j
        14: .line 501
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixChangingVisitor.end:()D
            dreturn
        end local 5 // int endColumn
        end local 4 // int startColumn
        end local 3 // int endRow
        end local 2 // int startRow
        end local 1 // org.apache.commons.math3.linear.RealMatrixChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   15     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   15     1      visitor  Lorg/apache/commons/math3/linear/RealMatrixChangingVisitor;
            0   15     2     startRow  I
            0   15     3       endRow  I
            0   15     4  startColumn  I
            0   15     5    endColumn  I
            5   14     6            j  I
            7   12     7            i  I
            9   10     8         rowI  [D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
             Name  Flags
      visitor      final
      startRow     final
      endRow       final
      startColumn  final
      endColumn    final

  public double walkInColumnOrder(org.apache.commons.math3.linear.RealMatrixPreservingVisitor, int, int, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;IIII)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=6
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        start local 2 // int startRow
        start local 3 // int endRow
        start local 4 // int startColumn
        start local 5 // int endColumn
         0: .line 510
            aload 0 /* this */
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
            invokestatic org.apache.commons.math3.linear.MatrixUtils.checkSubMatrixIndex:(Lorg/apache/commons/math3/linear/AnyMatrix;IIII)V
         1: .line 511
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
         2: .line 512
            iload 2 /* startRow */
            iload 3 /* endRow */
            iload 4 /* startColumn */
            iload 5 /* endColumn */
         3: .line 511
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.start:(IIIIII)V
         4: .line 513
            iload 4 /* startColumn */
            istore 6 /* j */
        start local 6 // int j
         5: goto 12
         6: .line 514
      StackMap locals: int
      StackMap stack:
            iload 2 /* startRow */
            istore 7 /* i */
        start local 7 // int i
         7: goto 10
         8: .line 515
      StackMap locals: int
      StackMap stack:
            aload 1 /* visitor */
            iload 7 /* i */
            iload 6 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 7 /* i */
            aaload
            iload 6 /* j */
            daload
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.visit:(IID)V
         9: .line 514
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 7 /* i */
            iload 3 /* endRow */
            if_icmple 8
        end local 7 // int i
        11: .line 513
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 6 /* j */
            iload 5 /* endColumn */
            if_icmple 6
        end local 6 // int j
        13: .line 518
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealMatrixPreservingVisitor.end:()D
            dreturn
        end local 5 // int endColumn
        end local 4 // int startColumn
        end local 3 // int endRow
        end local 2 // int startRow
        end local 1 // org.apache.commons.math3.linear.RealMatrixPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   14     0         this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0   14     1      visitor  Lorg/apache/commons/math3/linear/RealMatrixPreservingVisitor;
            0   14     2     startRow  I
            0   14     3       endRow  I
            0   14     4  startColumn  I
            0   14     5    endColumn  I
            5   13     6            j  I
            7   11     7            i  I
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException, org.apache.commons.math3.exception.NumberIsTooSmallException
    MethodParameters:
             Name  Flags
      visitor      final
      startRow     final
      endRow       final
      startColumn  final
      endColumn    final

  private double[][] copyOut();
    descriptor: ()[[D
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=4, args_size=1
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
         0: .line 527
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getRowDimension:()I
            istore 1 /* nRows */
        start local 1 // int nRows
         1: .line 528
            iload 1 /* nRows */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.getColumnDimension:()I
            multianewarray [[D 2
            astore 2 /* out */
        start local 2 // double[][] out
         2: .line 530
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 531
      StackMap locals: int double[][] int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 3 /* i */
            aaload
            iconst_0
            aload 2 /* out */
            iload 3 /* i */
            aaload
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.linear.Array2DRowRealMatrix.data:[[D
            iload 3 /* i */
            aaload
            arraylength
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 530
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 1 /* nRows */
            if_icmplt 4
        end local 3 // int i
         7: .line 533
            aload 2 /* out */
            areturn
        end local 2 // double[][] out
        end local 1 // int nRows
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            1    8     1  nRows  I
            2    8     2    out  [[D
            3    7     3      i  I

  private void copyIn(double[][]);
    descriptor: ([[D)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
        start local 1 // double[][] in
         0: .line 546
            aload 0 /* this */
            aload 1 /* in */
            iconst_0
            iconst_0
            invokevirtual org.apache.commons.math3.linear.Array2DRowRealMatrix.setSubMatrix:([[DII)V
         1: .line 547
            return
        end local 1 // double[][] in
        end local 0 // org.apache.commons.math3.linear.Array2DRowRealMatrix this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/linear/Array2DRowRealMatrix;
            0    2     1    in  [[D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.NoDataException, org.apache.commons.math3.exception.NullArgumentException
    MethodParameters:
      Name  Flags
      in    final
}
SourceFile: "Array2DRowRealMatrix.java"