File: decompose_LR.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 (19 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use Test::More tests => 2;
use File::Spec;
use lib File::Spec->catfile("..","lib");
use Math::Complex;
use Math::MatrixReal;
use Data::Dumper;

do 'funcs.pl';

{
    my $a = Math::MatrixReal->new_from_rows([ [ 2 ] ] );

    ok_matrix( $a->decompose_LR->invert_LR, $a->inverse, q{decompose_LR->invert_LR = inverse for 1x1 matrices} );
    ok_matrix( $a->new_from_rows( [[ 1/2 ]]) , $a->inverse, q{decompose_LR works for 1x1 matrices} );

}