The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

SPVM::NDArray::ComplexByte - N-Dimension Array of SPVM::Complex_2b

SYNOPSYS

  my $ndarray = SPVM::NDArray::ComplexByte->new;
  my $dim1 = 3;
  my $dim2 = 4;
  my $length = $dim1 * $dim2;
  $ndarray->{base} = new SPVM::Complex_2b[$length];
  $ndarray->{length} = $length;
  $ndarray->{shape} = [$dim1, $dim2];

DESCRIPTION

SPVM::NDArray::ComplexByte is N-Dimension Array of SPVM::Complex_2b.

See SPVM::NDArray::Document about Details of N-Dimension Array.