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

NAME

SPVM::NDArray::Short - N-Dimension Array of short

SYNOPSYS

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

DESCRIPTION

SPVM::NDArray::Short is N-Dimension Array of short.

See SPVM::NDArrayDoc about Details of N-Dimension Array.