File: inverse.t

package info (click to toggle)
libmath-matrixreal-perl 2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,120 kB
  • sloc: perl: 2,837; makefile: 8
file content (56 lines) | stat: -rw-r--r-- 1,215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use Test::More tests => 6;
use File::Spec;
use lib File::Spec->catfile("..","lib");
use Math::MatrixReal;
do 'funcs.pl';

{
    ## compute a 2x2 inverse
    $matrix = Math::MatrixReal->new_from_string(<<"MATRIX");
[  3.0  7.0  ]
[  2.0  5.0  ]
MATRIX

    $inverse = Math::MatrixReal->new_from_string(<<"MATRIX");
[  5.0 -7.0 ]
[ -2.0  3.0 ]
MATRIX

    ok_matrix( $matrix ** -1 , $inverse, '** -1 = inverse ' );
}

{
    ## A*A^-1 should = indentity
    my $matrix = Math::MatrixReal->new_random(10);
    my $one = $matrix->clone();
    $one->one();

    ok_matrix($matrix * $matrix ** -1, $one );
}

{
    my $one = Math::MatrixReal->new(5,5);
    $one->one;
    ok_matrix( $one, $one ** -1, q{inverse of identity is identity} );

}

{
    my $matrix = Math::MatrixReal->new_random(3);
    ok_matrix( $matrix->inverse->inverse, $matrix );
}

{
    my $a = Math::MatrixReal->new_random(5);
    my $b = Math::MatrixReal->new_random(5);
    ok_matrix( ($a*$b)->inverse, ($b->inverse * $a->inverse) );

}

{
    my $x = 1 + int rand (10);
    my $a = Math::MatrixReal->new_from_rows ( [[ 1/$x ]] );
    my $inv = $a->inverse;
    ok_matrix( $a * $inv, $a->new_from_rows([[ 1 ]]), "inverting 1x1 matrices works" );

}