Recent Changes - Search:

edit SideBar

Perl-Math-MatrixReal

Description

Implements the data type "matrix of reals" (and consequently also "vector of reals") which can be used almost like any other basic Perl type thanks to OPERATOR OVERLOADING, i.e.,

    $A = $matrix1 * $matrix2;
    $B = $A ** 2;
    $C = $A + 2*B;
    $D = $C - $B/2;
    $inverse = $C ** -1;
    $inverse = 1/$C;

does what you would like it to do.

The Perl module is available as 32-bit and 64-bit:

  • For the 32-bit module you need to use perl.
  • For the 64-bit module you need to use perl_64bit.

Homepage: http://search.cpan.org/dist/Math-MatrixReal/

Version: 2.05

Downloads

RPM:

Source RPM:

Package dependencies:


All versions:

Edit - History - Print - Recent Changes - Search
Page last modified on September 18, 2009, at 11:19 AM