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

  public abstract int getDimension();
    descriptor: ()I
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract double getEntry(int);
    descriptor: (I)D
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      index  

  public abstract void setEntry(int, double);
    descriptor: (ID)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      index  
      value  

  public void addToEntry(int, double);
    descriptor: (ID)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // int index
        start local 2 // double increment
         0: .line 98
            aload 0 /* this */
            iload 1 /* index */
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dload 2 /* increment */
            dadd
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
         1: .line 99
            return
        end local 2 // double increment
        end local 1 // int index
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/apache/commons/math3/linear/RealVector;
            0    2     1      index  I
            0    2     2  increment  D
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
           Name  Flags
      index      
      increment  

  public abstract org.apache.commons.math3.linear.RealVector append(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      v     

  public abstract org.apache.commons.math3.linear.RealVector append(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    MethodParameters:
      Name  Flags
      d     

  public abstract org.apache.commons.math3.linear.RealVector getSubVector(int, int);
    descriptor: (II)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.NotPositiveException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      index  
      n      

  public abstract void setSubVector(int, org.apache.commons.math3.linear.RealVector);
    descriptor: (ILorg/apache/commons/math3/linear/RealVector;)V
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      index  
      v      

  public abstract boolean isNaN();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public abstract boolean isInfinite();
    descriptor: ()Z
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  protected void checkVectorDimensions(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 164
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(I)V
         1: .line 165
            return
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    2     1     v  Lorg/apache/commons/math3/linear/RealVector;
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  protected void checkVectorDimensions(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // int n
         0: .line 176
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 2 /* d */
        start local 2 // int d
         1: .line 177
            iload 2 /* d */
            iload 1 /* n */
            if_icmpeq 3
         2: .line 178
            new org.apache.commons.math3.exception.DimensionMismatchException
            dup
            iload 2 /* d */
            iload 1 /* n */
            invokespecial org.apache.commons.math3.exception.DimensionMismatchException.<init>:(II)V
            athrow
         3: .line 180
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int d
        end local 1 // int n
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    4     1     n  I
            1    4     2     d  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      n     

  protected void checkIndex(int);
    descriptor: (I)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // int index
         0: .line 189
            iload 1 /* index */
            iflt 2
         1: .line 190
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            if_icmplt 5
         2: .line 191
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.INDEX:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
         3: .line 192
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            iconst_1
            isub
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         4: .line 191
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         5: .line 194
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0    6     1  index  I
    Exceptions:
      throws org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      index  final

  protected void checkIndices(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=7, locals=4, args_size=3
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // int start
        start local 2 // int end
         0: .line 207
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 3 /* dim */
        start local 3 // int dim
         1: .line 208
            iload 1 /* start */
            iflt 2
            iload 1 /* start */
            iload 3 /* dim */
            if_icmplt 5
         2: .line 209
      StackMap locals: int
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.INDEX:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 1 /* start */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         3: .line 210
            iload 3 /* dim */
            iconst_1
            isub
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         4: .line 209
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         5: .line 212
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            iflt 6
            iload 2 /* end */
            iload 3 /* dim */
            if_icmplt 9
         6: .line 213
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.exception.OutOfRangeException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.INDEX:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iload 2 /* end */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         7: .line 214
            iload 3 /* dim */
            iconst_1
            isub
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
         8: .line 213
            invokespecial org.apache.commons.math3.exception.OutOfRangeException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Ljava/lang/Number;)V
            athrow
         9: .line 216
      StackMap locals:
      StackMap stack:
            iload 2 /* end */
            iload 1 /* start */
            if_icmpge 13
        10: .line 218
            new org.apache.commons.math3.exception.NumberIsTooSmallException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.INITIAL_ROW_AFTER_FINAL_ROW:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
        11: .line 219
            iload 2 /* end */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iload 1 /* start */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            iconst_0
        12: .line 218
            invokespecial org.apache.commons.math3.exception.NumberIsTooSmallException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;Ljava/lang/Number;Ljava/lang/Number;Z)V
            athrow
        13: .line 221
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int dim
        end local 2 // int end
        end local 1 // int start
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0   14     1  start  I
            0   14     2    end  I
            1   14     3    dim  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
       Name  Flags
      start  final
      end    final

  public org.apache.commons.math3.linear.RealVector add(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 233
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 234
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            astore 2 /* result */
        start local 2 // org.apache.commons.math3.linear.RealVector result
         2: .line 235
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         3: .line 236
            goto 7
         4: .line 237
      StackMap locals: org.apache.commons.math3.linear.RealVector java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 238
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            istore 5 /* index */
        start local 5 // int index
         6: .line 239
            aload 2 /* result */
            iload 5 /* index */
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            aload 2 /* result */
            iload 5 /* index */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dadd
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
        end local 5 // int index
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         7: .line 236
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 241
            aload 2 /* result */
            areturn
        end local 3 // java.util.Iterator it
        end local 2 // org.apache.commons.math3.linear.RealVector result
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/apache/commons/math3/linear/RealVector;
            0    9     1       v  Lorg/apache/commons/math3/linear/RealVector;
            2    9     2  result  Lorg/apache/commons/math3/linear/RealVector;
            3    9     3      it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    7     4       e  Lorg/apache/commons/math3/linear/RealVector$Entry;
            6    7     5   index  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public org.apache.commons.math3.linear.RealVector subtract(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 254
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 255
            aload 1 /* v */
            ldc -1.0
            invokevirtual org.apache.commons.math3.linear.RealVector.mapMultiply:(D)Lorg/apache/commons/math3/linear/RealVector;
            astore 2 /* result */
        start local 2 // org.apache.commons.math3.linear.RealVector result
         2: .line 256
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         3: .line 257
            goto 7
         4: .line 258
      StackMap locals: org.apache.commons.math3.linear.RealVector java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 259
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            istore 5 /* index */
        start local 5 // int index
         6: .line 260
            aload 2 /* result */
            iload 5 /* index */
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            aload 2 /* result */
            iload 5 /* index */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dadd
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
        end local 5 // int index
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         7: .line 257
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 262
            aload 2 /* result */
            areturn
        end local 3 // java.util.Iterator it
        end local 2 // org.apache.commons.math3.linear.RealVector result
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/apache/commons/math3/linear/RealVector;
            0    9     1       v  Lorg/apache/commons/math3/linear/RealVector;
            2    9     2  result  Lorg/apache/commons/math3/linear/RealVector;
            3    9     3      it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    7     4       e  Lorg/apache/commons/math3/linear/RealVector$Entry;
            6    7     5   index  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public org.apache.commons.math3.linear.RealVector mapAdd(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 273
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            dload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapAddToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapAddToSelf(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 284
            dload 1 /* d */
            dconst_0
            dcmpl
            ifeq 2
         1: .line 285
            aload 0 /* this */
            new org.apache.commons.math3.analysis.function.Add
            dup
            invokespecial org.apache.commons.math3.analysis.function.Add.<init>:()V
            dload 1 /* d */
            invokestatic org.apache.commons.math3.analysis.FunctionUtils.fix2ndArgument:(Lorg/apache/commons/math3/analysis/BivariateFunction;D)Lorg/apache/commons/math3/analysis/UnivariateFunction;
            invokevirtual org.apache.commons.math3.linear.RealVector.mapToSelf:(Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
            areturn
         2: .line 287
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    3     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public abstract org.apache.commons.math3.linear.RealVector copy();
    descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT

  public double dotProduct(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 306
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 307
            dconst_0
            dstore 2 /* d */
        start local 2 // double d
         2: .line 308
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 4 /* n */
        start local 4 // int n
         3: .line 309
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         4: goto 7
         5: .line 310
      StackMap locals: double int int
      StackMap stack:
            dload 2 /* d */
            aload 0 /* this */
            iload 5 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            aload 1 /* v */
            iload 5 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dmul
            dadd
            dstore 2 /* d */
         6: .line 309
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            iload 4 /* n */
            if_icmplt 5
        end local 5 // int i
         8: .line 312
            dload 2 /* d */
            dreturn
        end local 4 // int n
        end local 2 // double d
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    9     1     v  Lorg/apache/commons/math3/linear/RealVector;
            2    9     2     d  D
            3    9     4     n  I
            4    8     5     i  I
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public double cosine(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 328
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getNorm:()D
            dstore 2 /* norm */
        start local 2 // double norm
         1: .line 329
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.getNorm:()D
            dstore 4 /* vNorm */
        start local 4 // double vNorm
         2: .line 331
            dload 2 /* norm */
            dconst_0
            dcmpl
            ifeq 4
         3: .line 332
            dload 4 /* vNorm */
            dconst_0
            dcmpl
            ifne 5
         4: .line 333
      StackMap locals: double double
      StackMap stack:
            new org.apache.commons.math3.exception.MathArithmeticException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ZERO_NORM:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathArithmeticException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         5: .line 335
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.dotProduct:(Lorg/apache/commons/math3/linear/RealVector;)D
            dload 2 /* norm */
            dload 4 /* vNorm */
            dmul
            ddiv
            dreturn
        end local 4 // double vNorm
        end local 2 // double norm
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0    6     1      v  Lorg/apache/commons/math3/linear/RealVector;
            1    6     2   norm  D
            2    6     4  vNorm  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MathArithmeticException
    MethodParameters:
      Name  Flags
      v     

  public abstract org.apache.commons.math3.linear.RealVector ebeDivide(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public abstract org.apache.commons.math3.linear.RealVector ebeMultiply(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0401) ACC_PUBLIC, ACC_ABSTRACT
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public double getDistance(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=8, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 375
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 376
            dconst_0
            dstore 2 /* d */
        start local 2 // double d
         2: .line 377
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 4 /* it */
        start local 4 // java.util.Iterator it
         3: .line 378
            goto 7
         4: .line 379
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 5 /* e */
        start local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 380
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            aload 1 /* v */
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dsub
            dstore 6 /* diff */
        start local 6 // double diff
         6: .line 381
            dload 2 /* d */
            dload 6 /* diff */
            dload 6 /* diff */
            dmul
            dadd
            dstore 2 /* d */
        end local 6 // double diff
        end local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         7: .line 378
      StackMap locals:
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 383
            dload 2 /* d */
            invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
            dreturn
        end local 4 // java.util.Iterator it
        end local 2 // double d
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    9     1     v  Lorg/apache/commons/math3/linear/RealVector;
            2    9     2     d  D
            3    9     4    it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    7     5     e  Lorg/apache/commons/math3/linear/RealVector$Entry;
            6    7     6  diff  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public double getNorm();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 397
            dconst_0
            dstore 1 /* sum */
        start local 1 // double sum
         1: .line 398
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 399
            goto 6
         3: .line 400
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         4: .line 401
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            dstore 5 /* value */
        start local 5 // double value
         5: .line 402
            dload 1 /* sum */
            dload 5 /* value */
            dload 5 /* value */
            dmul
            dadd
            dstore 1 /* sum */
        end local 5 // double value
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         6: .line 399
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         7: .line 404
            dload 1 /* sum */
            invokestatic org.apache.commons.math3.util.FastMath.sqrt:(D)D
            dreturn
        end local 3 // java.util.Iterator it
        end local 1 // double sum
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lorg/apache/commons/math3/linear/RealVector;
            1    8     1    sum  D
            2    8     3     it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            4    6     4      e  Lorg/apache/commons/math3/linear/RealVector$Entry;
            5    6     5  value  D

  public double getL1Norm();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 418
            dconst_0
            dstore 1 /* norm */
        start local 1 // double norm
         1: .line 419
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 420
            goto 5
         3: .line 421
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         4: .line 422
            dload 1 /* norm */
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dadd
            dstore 1 /* norm */
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 420
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 424
            dload 1 /* norm */
            dreturn
        end local 3 // java.util.Iterator it
        end local 1 // double norm
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/linear/RealVector;
            1    7     1  norm  D
            2    7     3    it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            4    5     4     e  Lorg/apache/commons/math3/linear/RealVector$Entry;

  public double getLInfNorm();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 438
            dconst_0
            dstore 1 /* norm */
        start local 1 // double norm
         1: .line 439
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         2: .line 440
            goto 5
         3: .line 441
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         4: .line 442
            dload 1 /* norm */
            aload 4 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
            dstore 1 /* norm */
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 440
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         6: .line 444
            dload 1 /* norm */
            dreturn
        end local 3 // java.util.Iterator it
        end local 1 // double norm
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lorg/apache/commons/math3/linear/RealVector;
            1    7     1  norm  D
            2    7     3    it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            4    5     4     e  Lorg/apache/commons/math3/linear/RealVector$Entry;

  public double getL1Distance(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 460
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 461
            dconst_0
            dstore 2 /* d */
        start local 2 // double d
         2: .line 462
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 4 /* it */
        start local 4 // java.util.Iterator it
         3: .line 463
            goto 6
         4: .line 464
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 5 /* e */
        start local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 465
            dload 2 /* d */
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            aload 1 /* v */
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dadd
            dstore 2 /* d */
        end local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         6: .line 463
      StackMap locals:
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 467
            dload 2 /* d */
            dreturn
        end local 4 // java.util.Iterator it
        end local 2 // double d
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1     v  Lorg/apache/commons/math3/linear/RealVector;
            2    8     2     d  D
            3    8     4    it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    6     5     e  Lorg/apache/commons/math3/linear/RealVector$Entry;
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public double getLInfDistance(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 486
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 487
            dconst_0
            dstore 2 /* d */
        start local 2 // double d
         2: .line 488
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 4 /* it */
        start local 4 // java.util.Iterator it
         3: .line 489
            goto 6
         4: .line 490
      StackMap locals: double java.util.Iterator
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 5 /* e */
        start local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         5: .line 491
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            aload 1 /* v */
            aload 5 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dsub
            invokestatic org.apache.commons.math3.util.FastMath.abs:(D)D
            dload 2 /* d */
            invokestatic org.apache.commons.math3.util.FastMath.max:(DD)D
            dstore 2 /* d */
        end local 5 // org.apache.commons.math3.linear.RealVector$Entry e
         6: .line 489
      StackMap locals:
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         7: .line 493
            dload 2 /* d */
            dreturn
        end local 4 // java.util.Iterator it
        end local 2 // double d
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    8     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1     v  Lorg/apache/commons/math3/linear/RealVector;
            2    8     2     d  D
            3    8     4    it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    6     5     e  Lorg/apache/commons/math3/linear/RealVector$Entry;
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      v     

  public int getMinIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 503
            iconst_m1
            istore 1 /* minIndex */
        start local 1 // int minIndex
         1: .line 504
            ldc Infinity
            dstore 2 /* minValue */
        start local 2 // double minValue
         2: .line 505
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         3: .line 506
            goto 8
         4: .line 507
      StackMap locals: int double java.util.Iterator
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 5 /* entry */
        start local 5 // org.apache.commons.math3.linear.RealVector$Entry entry
         5: .line 508
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            dload 2 /* minValue */
            dcmpg
            ifgt 8
         6: .line 509
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            istore 1 /* minIndex */
         7: .line 510
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            dstore 2 /* minValue */
        end local 5 // org.apache.commons.math3.linear.RealVector$Entry entry
         8: .line 506
      StackMap locals:
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 513
            iload 1 /* minIndex */
            ireturn
        end local 4 // java.util.Iterator iterator
        end local 2 // double minValue
        end local 1 // int minIndex
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/apache/commons/math3/linear/RealVector;
            1   10     1  minIndex  I
            2   10     2  minValue  D
            3   10     4  iterator  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    8     5     entry  Lorg/apache/commons/math3/linear/RealVector$Entry;

  public double getMinValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 523
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getMinIndex:()I
            istore 1 /* minIndex */
        start local 1 // int minIndex
         1: .line 524
            iload 1 /* minIndex */
            ifge 2
            ldc NaN
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aload 0 /* this */
            iload 1 /* minIndex */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
      StackMap locals:
      StackMap stack: double
         3: dreturn
        end local 1 // int minIndex
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/math3/linear/RealVector;
            1    4     1  minIndex  I

  public int getMaxIndex();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 534
            iconst_m1
            istore 1 /* maxIndex */
        start local 1 // int maxIndex
         1: .line 535
            ldc -Infinity
            dstore 2 /* maxValue */
        start local 2 // double maxValue
         2: .line 536
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 4 /* iterator */
        start local 4 // java.util.Iterator iterator
         3: .line 537
            goto 8
         4: .line 538
      StackMap locals: int double java.util.Iterator
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 5 /* entry */
        start local 5 // org.apache.commons.math3.linear.RealVector$Entry entry
         5: .line 539
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            dload 2 /* maxValue */
            dcmpl
            iflt 8
         6: .line 540
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getIndex:()I
            istore 1 /* maxIndex */
         7: .line 541
            aload 5 /* entry */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            dstore 2 /* maxValue */
        end local 5 // org.apache.commons.math3.linear.RealVector$Entry entry
         8: .line 537
      StackMap locals:
      StackMap stack:
            aload 4 /* iterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 544
            iload 1 /* maxIndex */
            ireturn
        end local 4 // java.util.Iterator iterator
        end local 2 // double maxValue
        end local 1 // int maxIndex
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lorg/apache/commons/math3/linear/RealVector;
            1   10     1  maxIndex  I
            2   10     2  maxValue  D
            3   10     4  iterator  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            5    8     5     entry  Lorg/apache/commons/math3/linear/RealVector$Entry;

  public double getMaxValue();
    descriptor: ()D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 554
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getMaxIndex:()I
            istore 1 /* maxIndex */
        start local 1 // int maxIndex
         1: .line 555
            iload 1 /* maxIndex */
            ifge 2
            ldc NaN
            goto 3
      StackMap locals: int
      StackMap stack:
         2: aload 0 /* this */
            iload 1 /* maxIndex */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
      StackMap locals:
      StackMap stack: double
         3: dreturn
        end local 1 // int maxIndex
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lorg/apache/commons/math3/linear/RealVector;
            1    4     1  maxIndex  I

  public org.apache.commons.math3.linear.RealVector mapMultiply(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 567
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            dload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapMultiplyToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapMultiplyToSelf(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 578
            aload 0 /* this */
            new org.apache.commons.math3.analysis.function.Multiply
            dup
            invokespecial org.apache.commons.math3.analysis.function.Multiply.<init>:()V
            dload 1 /* d */
            invokestatic org.apache.commons.math3.analysis.FunctionUtils.fix2ndArgument:(Lorg/apache/commons/math3/analysis/BivariateFunction;D)Lorg/apache/commons/math3/analysis/UnivariateFunction;
            invokevirtual org.apache.commons.math3.linear.RealVector.mapToSelf:(Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapSubtract(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 589
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            dload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapSubtractToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapSubtractToSelf(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 600
            aload 0 /* this */
            dload 1 /* d */
            dneg
            invokevirtual org.apache.commons.math3.linear.RealVector.mapAddToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapDivide(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 611
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            dload 1 /* d */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapDivideToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealVector mapDivideToSelf(double);
    descriptor: (D)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double d
         0: .line 622
            aload 0 /* this */
            new org.apache.commons.math3.analysis.function.Divide
            dup
            invokespecial org.apache.commons.math3.analysis.function.Divide.<init>:()V
            dload 1 /* d */
            invokestatic org.apache.commons.math3.analysis.FunctionUtils.fix2ndArgument:(Lorg/apache/commons/math3/analysis/BivariateFunction;D)Lorg/apache/commons/math3/analysis/UnivariateFunction;
            invokevirtual org.apache.commons.math3.linear.RealVector.mapToSelf:(Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double d
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     d  D
    MethodParameters:
      Name  Flags
      d     

  public org.apache.commons.math3.linear.RealMatrix outerProduct(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealMatrix;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=7, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 632
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 2 /* m */
        start local 2 // int m
         1: .line 633
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 3 /* n */
        start local 3 // int n
         2: .line 635
            aload 1 /* v */
            instanceof org.apache.commons.math3.linear.SparseRealVector
            ifne 3
            aload 0 /* this */
            instanceof org.apache.commons.math3.linear.SparseRealVector
            ifeq 5
         3: .line 636
      StackMap locals: int int
      StackMap stack:
            new org.apache.commons.math3.linear.OpenMapRealMatrix
            dup
            iload 2 /* m */
            iload 3 /* n */
            invokespecial org.apache.commons.math3.linear.OpenMapRealMatrix.<init>:(II)V
            astore 4 /* product */
        start local 4 // org.apache.commons.math3.linear.RealMatrix product
         4: .line 637
            goto 6
        end local 4 // org.apache.commons.math3.linear.RealMatrix product
         5: .line 638
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.linear.Array2DRowRealMatrix
            dup
            iload 2 /* m */
            iload 3 /* n */
            invokespecial org.apache.commons.math3.linear.Array2DRowRealMatrix.<init>:(II)V
            astore 4 /* product */
        start local 4 // org.apache.commons.math3.linear.RealMatrix product
         6: .line 640
      StackMap locals: org.apache.commons.math3.linear.RealMatrix
      StackMap stack:
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         7: goto 14
         8: .line 641
      StackMap locals: int
      StackMap stack:
            iconst_0
            istore 6 /* j */
        start local 6 // int j
         9: goto 12
        10: .line 642
      StackMap locals: int
      StackMap stack:
            aload 4 /* product */
            iload 5 /* i */
            iload 6 /* j */
            aload 0 /* this */
            iload 5 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            aload 1 /* v */
            iload 6 /* j */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dmul
            invokeinterface org.apache.commons.math3.linear.RealMatrix.setEntry:(IID)V
        11: .line 641
            iinc 6 /* j */ 1
      StackMap locals:
      StackMap stack:
        12: iload 6 /* j */
            iload 3 /* n */
            if_icmplt 10
        end local 6 // int j
        13: .line 640
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        14: iload 5 /* i */
            iload 2 /* m */
            if_icmplt 8
        end local 5 // int i
        15: .line 645
            aload 4 /* product */
            areturn
        end local 4 // org.apache.commons.math3.linear.RealMatrix product
        end local 3 // int n
        end local 2 // int m
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0   16     1        v  Lorg/apache/commons/math3/linear/RealVector;
            1   16     2        m  I
            2   16     3        n  I
            4    5     4  product  Lorg/apache/commons/math3/linear/RealMatrix;
            6   16     4  product  Lorg/apache/commons/math3/linear/RealMatrix;
            7   15     5        i  I
            9   13     6        j  I
    MethodParameters:
      Name  Flags
      v     

  public org.apache.commons.math3.linear.RealVector projection(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVector v
         0: .line 660
            aload 1 /* v */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.dotProduct:(Lorg/apache/commons/math3/linear/RealVector;)D
            dstore 2 /* norm2 */
        start local 2 // double norm2
         1: .line 661
            dload 2 /* norm2 */
            dconst_0
            dcmpl
            ifne 3
         2: .line 662
            new org.apache.commons.math3.exception.MathArithmeticException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ZERO_NORM:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathArithmeticException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         3: .line 664
      StackMap locals: double
      StackMap stack:
            aload 1 /* v */
            aload 0 /* this */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.dotProduct:(Lorg/apache/commons/math3/linear/RealVector;)D
            aload 1 /* v */
            aload 1 /* v */
            invokevirtual org.apache.commons.math3.linear.RealVector.dotProduct:(Lorg/apache/commons/math3/linear/RealVector;)D
            ddiv
            invokevirtual org.apache.commons.math3.linear.RealVector.mapMultiply:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 2 // double norm2
        end local 1 // org.apache.commons.math3.linear.RealVector v
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0    4     1      v  Lorg/apache/commons/math3/linear/RealVector;
            1    4     2  norm2  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException, org.apache.commons.math3.exception.MathArithmeticException
    MethodParameters:
      Name  Flags
      v     final

  public void set(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double value
         0: .line 673
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 3 /* it */
        start local 3 // java.util.Iterator it
         1: .line 674
            goto 4
         2: .line 675
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 4 /* e */
        start local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         3: .line 676
            aload 4 /* e */
            dload 1 /* value */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.setValue:(D)V
        end local 4 // org.apache.commons.math3.linear.RealVector$Entry e
         4: .line 674
      StackMap locals:
      StackMap stack:
            aload 3 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 678
            return
        end local 3 // java.util.Iterator it
        end local 1 // double value
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0    6     1  value  D
            1    6     3     it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            3    4     4      e  Lorg/apache/commons/math3/linear/RealVector$Entry;
    MethodParameters:
       Name  Flags
      value  

  public double[] toArray();
    descriptor: ()[D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 688
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 1 /* dim */
        start local 1 // int dim
         1: .line 689
            iload 1 /* dim */
            newarray 7
            astore 2 /* values */
        start local 2 // double[] values
         2: .line 690
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 691
      StackMap locals: int double[] int
      StackMap stack:
            aload 2 /* values */
            iload 3 /* i */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dastore
         5: .line 690
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 1 /* dim */
            if_icmplt 4
        end local 3 // int i
         7: .line 693
            aload 2 /* values */
            areturn
        end local 2 // double[] values
        end local 1 // int dim
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/apache/commons/math3/linear/RealVector;
            1    8     1     dim  I
            2    8     2  values  [D
            3    7     3       i  I

  public org.apache.commons.math3.linear.RealVector unitVector();
    descriptor: ()Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 704
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getNorm:()D
            dstore 1 /* norm */
        start local 1 // double norm
         1: .line 705
            dload 1 /* norm */
            dconst_0
            dcmpl
            ifne 3
         2: .line 706
            new org.apache.commons.math3.exception.MathArithmeticException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ZERO_NORM:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathArithmeticException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         3: .line 708
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            dload 1 /* norm */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapDivide:(D)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // double norm
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/commons/math3/linear/RealVector;
            1    4     1  norm  D
    Exceptions:
      throws org.apache.commons.math3.exception.MathArithmeticException

  public void unitize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 718
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getNorm:()D
            dstore 1 /* norm */
        start local 1 // double norm
         1: .line 719
            dload 1 /* norm */
            dconst_0
            dcmpl
            ifne 3
         2: .line 720
            new org.apache.commons.math3.exception.MathArithmeticException
            dup
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.ZERO_NORM:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_0
            anewarray java.lang.Object
            invokespecial org.apache.commons.math3.exception.MathArithmeticException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         3: .line 722
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getNorm:()D
            invokevirtual org.apache.commons.math3.linear.RealVector.mapDivideToSelf:(D)Lorg/apache/commons/math3/linear/RealVector;
            pop
         4: .line 723
            return
        end local 1 // double norm
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lorg/apache/commons/math3/linear/RealVector;
            1    5     1  norm  D
    Exceptions:
      throws org.apache.commons.math3.exception.MathArithmeticException

  public java.util.Iterator<org.apache.commons.math3.linear.RealVector$Entry> sparseIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 738
            new org.apache.commons.math3.linear.RealVector$SparseEntryIterator
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.math3.linear.RealVector$SparseEntryIterator.<init>:(Lorg/apache/commons/math3/linear/RealVector;)V
            areturn
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
    Signature: ()Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;

  public java.util.Iterator<org.apache.commons.math3.linear.RealVector$Entry> iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 752
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 1 /* dim */
        start local 1 // int dim
         1: .line 753
            new org.apache.commons.math3.linear.RealVector$1
            dup
            aload 0 /* this */
            iload 1 /* dim */
            invokespecial org.apache.commons.math3.linear.RealVector$1.<init>:(Lorg/apache/commons/math3/linear/RealVector;I)V
            areturn
        end local 1 // int dim
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/linear/RealVector;
            1    2     1   dim  I
    Signature: ()Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;

  public org.apache.commons.math3.linear.RealVector map(org.apache.commons.math3.analysis.UnivariateFunction);
    descriptor: (Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.analysis.UnivariateFunction function
         0: .line 798
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            aload 1 /* function */
            invokevirtual org.apache.commons.math3.linear.RealVector.mapToSelf:(Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 1 // org.apache.commons.math3.analysis.UnivariateFunction function
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  function  Lorg/apache/commons/math3/analysis/UnivariateFunction;
    MethodParameters:
          Name  Flags
      function  

  public org.apache.commons.math3.linear.RealVector mapToSelf(org.apache.commons.math3.analysis.UnivariateFunction);
    descriptor: (Lorg/apache/commons/math3/analysis/UnivariateFunction;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.analysis.UnivariateFunction function
         0: .line 815
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.iterator:()Ljava/util/Iterator;
            astore 2 /* it */
        start local 2 // java.util.Iterator it
         1: .line 816
            goto 4
         2: .line 817
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.linear.RealVector$Entry
            astore 3 /* e */
        start local 3 // org.apache.commons.math3.linear.RealVector$Entry e
         3: .line 818
            aload 3 /* e */
            aload 1 /* function */
            aload 3 /* e */
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.getValue:()D
            invokeinterface org.apache.commons.math3.analysis.UnivariateFunction.value:(D)D
            invokevirtual org.apache.commons.math3.linear.RealVector$Entry.setValue:(D)V
        end local 3 // org.apache.commons.math3.linear.RealVector$Entry e
         4: .line 816
      StackMap locals:
      StackMap stack:
            aload 2 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 820
            aload 0 /* this */
            areturn
        end local 2 // java.util.Iterator it
        end local 1 // org.apache.commons.math3.analysis.UnivariateFunction function
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    6     0      this  Lorg/apache/commons/math3/linear/RealVector;
            0    6     1  function  Lorg/apache/commons/math3/analysis/UnivariateFunction;
            1    6     2        it  Ljava/util/Iterator<Lorg/apache/commons/math3/linear/RealVector$Entry;>;
            3    4     3         e  Lorg/apache/commons/math3/linear/RealVector$Entry;
    MethodParameters:
          Name  Flags
      function  

  public org.apache.commons.math3.linear.RealVector combine(double, double, org.apache.commons.math3.linear.RealVector);
    descriptor: (DDLorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double a
        start local 3 // double b
        start local 5 // org.apache.commons.math3.linear.RealVector y
         0: .line 838
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.copy:()Lorg/apache/commons/math3/linear/RealVector;
            dload 1 /* a */
            dload 3 /* b */
            aload 5 /* y */
            invokevirtual org.apache.commons.math3.linear.RealVector.combineToSelf:(DDLorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
            areturn
        end local 5 // org.apache.commons.math3.linear.RealVector y
        end local 3 // double b
        end local 1 // double a
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1     a  D
            0    1     3     b  D
            0    1     5     y  Lorg/apache/commons/math3/linear/RealVector;
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      a     
      b     
      y     

  public org.apache.commons.math3.linear.RealVector combineToSelf(double, double, org.apache.commons.math3.linear.RealVector);
    descriptor: (DDLorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=11, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // double a
        start local 3 // double b
        start local 5 // org.apache.commons.math3.linear.RealVector y
         0: .line 855
            aload 0 /* this */
            aload 5 /* y */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkVectorDimensions:(Lorg/apache/commons/math3/linear/RealVector;)V
         1: .line 856
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         2: goto 7
         3: .line 857
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 6 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dstore 7 /* xi */
        start local 7 // double xi
         4: .line 858
            aload 5 /* y */
            iload 6 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            dstore 9 /* yi */
        start local 9 // double yi
         5: .line 859
            aload 0 /* this */
            iload 6 /* i */
            dload 1 /* a */
            dload 7 /* xi */
            dmul
            dload 3 /* b */
            dload 9 /* yi */
            dmul
            dadd
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
        end local 9 // double yi
        end local 7 // double xi
         6: .line 856
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 6 /* i */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            if_icmplt 3
        end local 6 // int i
         8: .line 861
            aload 0 /* this */
            areturn
        end local 5 // org.apache.commons.math3.linear.RealVector y
        end local 3 // double b
        end local 1 // double a
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lorg/apache/commons/math3/linear/RealVector;
            0    9     1     a  D
            0    9     3     b  D
            0    9     5     y  Lorg/apache/commons/math3/linear/RealVector;
            2    8     6     i  I
            4    6     7    xi  D
            5    6     9    yi  D
    Exceptions:
      throws org.apache.commons.math3.exception.DimensionMismatchException
    MethodParameters:
      Name  Flags
      a     
      b     
      y     

  public double walkInDefaultOrder(org.apache.commons.math3.linear.RealVectorPreservingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
         0: .line 875
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 2 /* dim */
        start local 2 // int dim
         1: .line 876
            aload 1 /* visitor */
            iload 2 /* dim */
            iconst_0
            iload 2 /* dim */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.start:(III)V
         2: .line 877
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 878
      StackMap locals: int int
      StackMap stack:
            aload 1 /* visitor */
            iload 3 /* i */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.visit:(ID)V
         5: .line 877
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* dim */
            if_icmplt 4
        end local 3 // int i
         7: .line 880
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.end:()D
            dreturn
        end local 2 // int dim
        end local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1  visitor  Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;
            1    8     2      dim  I
            3    7     3        i  I
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInDefaultOrder(org.apache.commons.math3.linear.RealVectorPreservingVisitor, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;II)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        start local 2 // int start
        start local 3 // int end
         0: .line 899
            aload 0 /* this */
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkIndices:(II)V
         1: .line 900
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            iload 2 /* start */
            iload 3 /* end */
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.start:(III)V
         2: .line 901
            iload 2 /* start */
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 902
      StackMap locals: int
      StackMap stack:
            aload 1 /* visitor */
            iload 4 /* i */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.visit:(ID)V
         5: .line 901
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 3 /* end */
            if_icmple 4
        end local 4 // int i
         7: .line 904
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealVectorPreservingVisitor.end:()D
            dreturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1  visitor  Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;
            0    8     2    start  I
            0    8     3      end  I
            3    7     4        i  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
         Name  Flags
      visitor  final
      start    final
      end      final

  public double walkInOptimizedOrder(org.apache.commons.math3.linear.RealVectorPreservingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
         0: .line 920
            aload 0 /* this */
            aload 1 /* visitor */
            invokevirtual org.apache.commons.math3.linear.RealVector.walkInDefaultOrder:(Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;)D
            dreturn
        end local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  visitor  Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInOptimizedOrder(org.apache.commons.math3.linear.RealVectorPreservingVisitor, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;II)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        start local 2 // int start
        start local 3 // int end
         0: .line 941
            aload 0 /* this */
            aload 1 /* visitor */
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual org.apache.commons.math3.linear.RealVector.walkInDefaultOrder:(Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;II)D
            dreturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // org.apache.commons.math3.linear.RealVectorPreservingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  visitor  Lorg/apache/commons/math3/linear/RealVectorPreservingVisitor;
            0    1     2    start  I
            0    1     3      end  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
         Name  Flags
      visitor  final
      start    final
      end      final

  public double walkInDefaultOrder(org.apache.commons.math3.linear.RealVectorChangingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
         0: .line 955
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            istore 2 /* dim */
        start local 2 // int dim
         1: .line 956
            aload 1 /* visitor */
            iload 2 /* dim */
            iconst_0
            iload 2 /* dim */
            iconst_1
            isub
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.start:(III)V
         2: .line 957
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 6
         4: .line 958
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* i */
            aload 1 /* visitor */
            iload 3 /* i */
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.visit:(ID)D
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
         5: .line 957
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 3 /* i */
            iload 2 /* dim */
            if_icmplt 4
        end local 3 // int i
         7: .line 960
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.end:()D
            dreturn
        end local 2 // int dim
        end local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1  visitor  Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;
            1    8     2      dim  I
            3    7     3        i  I
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInDefaultOrder(org.apache.commons.math3.linear.RealVectorChangingVisitor, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;II)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        start local 2 // int start
        start local 3 // int end
         0: .line 979
            aload 0 /* this */
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual org.apache.commons.math3.linear.RealVector.checkIndices:(II)V
         1: .line 980
            aload 1 /* visitor */
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.linear.RealVector.getDimension:()I
            iload 2 /* start */
            iload 3 /* end */
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.start:(III)V
         2: .line 981
            iload 2 /* start */
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 982
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* i */
            aload 1 /* visitor */
            iload 4 /* i */
            aload 0 /* this */
            iload 4 /* i */
            invokevirtual org.apache.commons.math3.linear.RealVector.getEntry:(I)D
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.visit:(ID)D
            invokevirtual org.apache.commons.math3.linear.RealVector.setEntry:(ID)V
         5: .line 981
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            iload 3 /* end */
            if_icmple 4
        end local 4 // int i
         7: .line 984
            aload 1 /* visitor */
            invokeinterface org.apache.commons.math3.linear.RealVectorChangingVisitor.end:()D
            dreturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    8     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    8     1  visitor  Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;
            0    8     2    start  I
            0    8     3      end  I
            3    7     4        i  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
         Name  Flags
      visitor  final
      start    final
      end      final

  public double walkInOptimizedOrder(org.apache.commons.math3.linear.RealVectorChangingVisitor);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
         0: .line 1000
            aload 0 /* this */
            aload 1 /* visitor */
            invokevirtual org.apache.commons.math3.linear.RealVector.walkInDefaultOrder:(Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;)D
            dreturn
        end local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  visitor  Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;
    MethodParameters:
         Name  Flags
      visitor  final

  public double walkInOptimizedOrder(org.apache.commons.math3.linear.RealVectorChangingVisitor, int, int);
    descriptor: (Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;II)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        start local 2 // int start
        start local 3 // int end
         0: .line 1021
            aload 0 /* this */
            aload 1 /* visitor */
            iload 2 /* start */
            iload 3 /* end */
            invokevirtual org.apache.commons.math3.linear.RealVector.walkInDefaultOrder:(Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;II)D
            dreturn
        end local 3 // int end
        end local 2 // int start
        end local 1 // org.apache.commons.math3.linear.RealVectorChangingVisitor visitor
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  visitor  Lorg/apache/commons/math3/linear/RealVectorChangingVisitor;
            0    1     2    start  I
            0    1     3      end  I
    Exceptions:
      throws org.apache.commons.math3.exception.NumberIsTooSmallException, org.apache.commons.math3.exception.OutOfRangeException
    MethodParameters:
         Name  Flags
      visitor  final
      start    final
      end      final

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.linear.RealVector this
        start local 1 // java.lang.Object other
         0: .line 1096
            new org.apache.commons.math3.exception.MathUnsupportedOperationException
            dup
            invokespecial org.apache.commons.math3.exception.MathUnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object other
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lorg/apache/commons/math3/linear/RealVector;
            0    1     1  other  Ljava/lang/Object;
    Exceptions:
      throws org.apache.commons.math3.exception.MathUnsupportedOperationException
    MethodParameters:
       Name  Flags
      other  

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector this
         0: .line 1109
            new org.apache.commons.math3.exception.MathUnsupportedOperationException
            dup
            invokespecial org.apache.commons.math3.exception.MathUnsupportedOperationException.<init>:()V
            athrow
        end local 0 // org.apache.commons.math3.linear.RealVector this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/linear/RealVector;
    Exceptions:
      throws org.apache.commons.math3.exception.MathUnsupportedOperationException

  public static org.apache.commons.math3.linear.RealVector unmodifiableRealVector(org.apache.commons.math3.linear.RealVector);
    descriptor: (Lorg/apache/commons/math3/linear/RealVector;)Lorg/apache/commons/math3/linear/RealVector;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.linear.RealVector v
         0: .line 1215
            new org.apache.commons.math3.linear.RealVector$2
            dup
            aload 0 /* v */
            invokespecial org.apache.commons.math3.linear.RealVector$2.<init>:(Lorg/apache/commons/math3/linear/RealVector;)V
            areturn
        end local 0 // org.apache.commons.math3.linear.RealVector v
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     v  Lorg/apache/commons/math3/linear/RealVector;
    MethodParameters:
      Name  Flags
      v     final
}
SourceFile: "RealVector.java"
NestMembers:
  org.apache.commons.math3.linear.RealVector$1  org.apache.commons.math3.linear.RealVector$2  org.apache.commons.math3.linear.RealVector$2$1  org.apache.commons.math3.linear.RealVector$2$2  org.apache.commons.math3.linear.RealVector$2$UnmodifiableEntry  org.apache.commons.math3.linear.RealVector$Entry  org.apache.commons.math3.linear.RealVector$SparseEntryIterator
InnerClasses:
  org.apache.commons.math3.linear.RealVector$1
  org.apache.commons.math3.linear.RealVector$2
  protected Entry = org.apache.commons.math3.linear.RealVector$Entry of org.apache.commons.math3.linear.RealVector
  protected SparseEntryIterator = org.apache.commons.math3.linear.RealVector$SparseEntryIterator of org.apache.commons.math3.linear.RealVector