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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
|
#=======================================================================
# ____ ____ _____ _ ____ ___ ____
# | _ \| _ \| ___| _ _ / \ | _ \_ _| |___ \
# | |_) | | | | |_ (_) (_) / _ \ | |_) | | __) |
# | __/| |_| | _| _ _ / ___ \| __/| | / __/
# |_| |____/|_| (_) (_) /_/ \_\_| |___| |_____|
#
# Copyright 1999-2001 Alfred Reibenschuh <areibens@cpan.org>.
#
# This library is free software; you can redistribute it
# and/or modify it under the same terms as Perl itself.
#
#=======================================================================
#
# PDF::API2::Matrix
# Original Copyright 1995-96 Ulrich Pfeifer.
# modified by Alfred Reibenschuh <areibens@cpan.org> for PDF::API2
#
# $Id: Matrix.pm,v 1.7 2004/12/16 00:30:51 fredo Exp $
#
#=======================================================================
package PDF::API2::Matrix;
use vars qw( $VERSION );
( $VERSION ) = '$Revision: 1.7 $' =~ /Revision: (\S+)\s/; # $Date: 2004/12/16 00:30:51 $
no warnings qw[ deprecated recursion uninitialized ];
sub new {
my $type = shift;
my $self = [];
my $len = scalar(@{$_[0]});
for (@_) {
return undef if scalar(@{$_}) != $len;
push(@{$self}, [@{$_}]);
}
bless $self, $type;
}
sub concat {
my $self = shift;
my $other = shift;
my $result = new PDF::API2::Matrix (@{$self});
return undef if scalar(@{$self}) != scalar(@{$other});
for my $i (0 .. $#{$self}) {
push @{$result->[$i]}, @{$other->[$i]};
}
$result;
}
sub transpose {
my $self = shift;
my @result;
my $m;
for my $col (@{$self->[0]}) {
push @result, [];
}
for my $row (@{$self}) {
$m=0;
for my $col (@{$row}) {
push(@{$result[$m++]}, $col);
}
}
new PDF::API2::Matrix (@result);
}
sub vekpro {
my($a, $b) = @_;
my $result=0;
for my $i (0 .. $#{$a}) {
$result += $a->[$i] * $b->[$i];
}
$result;
}
sub multiply {
my $self = shift;
my $other = shift->transpose;
my @result;
my $m;
return undef if $#{$self->[0]} != $#{$other->[0]};
for my $row (@{$self}) {
my $rescol = [];
for my $col (@{$other}) {
push(@{$rescol}, vekpro($row,$col));
}
push(@result, $rescol);
}
new PDF::API2::Matrix (@result);
}
sub solve {
my $m = new PDF::API2::Matrix (@{$_[0]});
my $mr = $#{$m};
my $mc = $#{$m->[0]};
my $f;
my $try;
my $k;
my $i;
my $j;
my $eps = 0.000001;
return undef if $mc <= $mr;
ROW: for($i = 0; $i <= $mr; $i++) {
$try=$i;
# make diagonal element nonzero if possible
while (abs($m->[$i]->[$i]) < $eps) {
last ROW if $try++ > $mr;
my $row = splice(@{$m},$i,1);
push(@{$m}, $row);
}
# normalize row
$f = $m->[$i]->[$i];
for($k = 0; $k <= $mc; $k++) {
$m->[$i]->[$k] /= $f;
}
# subtract multiple of designated row from other rows
for($j = 0; $j <= $mr; $j++) {
next if $i == $j;
$f = $m->[$j]->[$i];
for($k = 0; $k <= $mc; $k++) {
$m->[$j]->[$k] -= $m->[$i]->[$k] * $f;
}
}
}
# Answer is in augmented column
transpose new PDF::API2::Matrix @{$m->transpose}[$mr+1 .. $mc];
}
sub print {
my $self = shift;
print STDERR "Matrix: \n";
print @_ if scalar(@_);
for my $row (@{$self}) {
for my $col (@{$row}) {
printf STDERR "%10.5f ", $col;
}
print STDERR "\n";
}
}
1;
__END__
|