Help for this page

Select Code to Download


  1. or download this
    sub mmMxN {
        our( @M, @N );
    ...
        }
        return \@C;
    }
    
  2. or download this
    sub mmMxN {
        my $self = shift;
    ...
        }
        return $self->{R};
    }
    
  3. or download this
    sub mmMxN {
        our ( @M, @N );
    ...
        }
        $self->{R} = \@R;
    }