NAME

SPVM::Complex_2d - double complex type

SYNOPSYS

my $z : Complex_2d;
$z->{re} = 1;
$z->{im} = 2;

DESCRIPTION

Complex_2d is double complex type.

This module is multi numeric type.

class Complex_2d : mulnum_t {
  has re : double;
  has im : double;
}

FIELDS

re

has re : double;

Real number.

im

has im : double;

Imaginary number.