The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SPVM::NDArray::QuatDouble - N-Dimension Array of SPVM::Quat_4d

SYNOPSYS

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

DESCRIPTION

SPVM::NDArray::QuatDouble is N-Dimension Array of SPVM::Quat_4d.

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