Help for this page

Select Code to Download


  1. or download this
    
    my $matrix = Math::MatrixReal->new_from_string(...);
    my $ones = Math::MatrixReal->new_from_string("[ 1 1 1 1 ]");
    my $inv = $matrix->inverse();
    my $answer = $inv->multiply($ones);