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

  public static org.apache.commons.math3.complex.Complex polar2Complex(double, double);
    descriptor: (DD)Lorg/apache/commons/math3/complex/Complex;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=4, args_size=2
        start local 0 // double r
        start local 2 // double theta
         0: .line 62
            dload 0 /* r */
            dconst_0
            dcmpg
            ifge 4
         1: .line 63
            new org.apache.commons.math3.exception.MathIllegalArgumentException
            dup
         2: .line 64
            getstatic org.apache.commons.math3.exception.util.LocalizedFormats.NEGATIVE_COMPLEX_MODULE:Lorg/apache/commons/math3/exception/util/LocalizedFormats;
            iconst_1
            anewarray java.lang.Object
            dup
            iconst_0
            dload 0 /* r */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
         3: .line 63
            aastore
            invokespecial org.apache.commons.math3.exception.MathIllegalArgumentException.<init>:(Lorg/apache/commons/math3/exception/util/Localizable;[Ljava/lang/Object;)V
            athrow
         4: .line 66
      StackMap locals:
      StackMap stack:
            new org.apache.commons.math3.complex.Complex
            dup
            dload 0 /* r */
            dload 2 /* theta */
            invokestatic org.apache.commons.math3.util.FastMath.cos:(D)D
            dmul
            dload 0 /* r */
            dload 2 /* theta */
            invokestatic org.apache.commons.math3.util.FastMath.sin:(D)D
            dmul
            invokespecial org.apache.commons.math3.complex.Complex.<init>:(DD)V
            areturn
        end local 2 // double theta
        end local 0 // double r
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0      r  D
            0    5     2  theta  D
    Exceptions:
      throws org.apache.commons.math3.exception.MathIllegalArgumentException
    MethodParameters:
       Name  Flags
      r      
      theta  

  public static org.apache.commons.math3.complex.Complex[] convertToComplex(double[]);
    descriptor: ([D)[Lorg/apache/commons/math3/complex/Complex;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=8, locals=3, args_size=1
        start local 0 // double[] real
         0: .line 79
            aload 0 /* real */
            arraylength
            anewarray org.apache.commons.math3.complex.Complex
            astore 1 /* c */
        start local 1 // org.apache.commons.math3.complex.Complex[] c
         1: .line 80
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 81
      StackMap locals: org.apache.commons.math3.complex.Complex[] int
      StackMap stack:
            aload 1 /* c */
            iload 2 /* i */
            new org.apache.commons.math3.complex.Complex
            dup
            aload 0 /* real */
            iload 2 /* i */
            daload
            dconst_0
            invokespecial org.apache.commons.math3.complex.Complex.<init>:(DD)V
            aastore
         4: .line 80
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* real */
            arraylength
            if_icmplt 3
        end local 2 // int i
         6: .line 84
            aload 1 /* c */
            areturn
        end local 1 // org.apache.commons.math3.complex.Complex[] c
        end local 0 // double[] real
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  real  [D
            1    7     1     c  [Lorg/apache/commons/math3/complex/Complex;
            2    6     2     i  I
    MethodParameters:
      Name  Flags
      real  
}
SourceFile: "ComplexUtils.java"