Bio::PhyloNetwork
muVector
Toolbar
Summary
Bio::PhyloNetwork::muVector - Module to compute with vectors of arbitrary
dimension
Package variables
No package variables defined.
Inherit
Synopsis
use strict;
use warnings;
use Bio::PhyloNetwork::muVector;
my $vec1=Bio::PhyloNetwork::muVector->new(4);
my $vec2=Bio::PhyloNetwork::muVector->new([1,2,3,4]);
my $vec3=Bio::PhyloNetwork::muVector->new([10,20,30,40]);
my $vec4=$vec3-10*$vec2;
if (($vec4 cmp $vec1) == 0) {
print "$vec4 is zero\n";
}
my $vec5=Bio::PhyloNetwork::muVector->new([8,2,2,4]);
my $vec6=Bio::PhyloNetwork::muVector->new([1,2,3,4]);
print "Test poset $vec5 > $vec6: ".$vec5->geq_poset($vec6)."\n";
print "Test lex $vec5 > $vec6: ".($vec5 cmp $vec6)."\n";
Description
This is a module to work with vectors. It creates
vectors of arbitrary length, defines its basic arithmetic operations,
its lexicographic ordering and the natural structure of poset.
Methods
Methods description
Title : new Usage : my $mu = new Bio::PhyloNetwork::muVector(); Function: Creates a new Bio::PhyloNetwork::muVector object Returns : Bio::PhyloNetwork::muVector Args : integer or (reference to) an array
If given an integer as argument, returns a Bio::PhyloNetwork::muVector object with dimension the integer given and initialized to zero. If it is an anonimous array, then the vector is initialized with the values in the array and with the corresponding dimension. |
Title : display Usage : my $str=$mu->display() Function: returns an string displaying its contents Returns : string Args : none
This function is also overloaded to the "" operator. |
Title : add Usage : $mu->add($mu2) Function: returns the sum of $mu and $mu2 Returns : Bio::PhyloNetwork::muVector Args : Bio::PhyloNetwork::muVector
This function is also overloaded to the + operator. |
Title : substract Usage : $mu->substract($mu2) Function: returns the difference of $mu and $mu2 Returns : Bio::PhyloNetwork::muVector Args : Bio::PhyloNetwork::muVector
This function is also overloaded to the - operator. |
Title : scalarproduct Usage : $mu->scalarproduct($ct) Function: returns the scalar product of $ct and $mu Returns : Bio::PhyloNetwork::muVector Args : scalar
This function is also overloaded to the * operator. |
Title : comparelex Usage : $mu1->comparelex($mu2) Function: compares $mu and $mu2 w.r.t. the lexicographic ordering Returns : scalar (-1 if $mu1<$mu2, 0 if $mu1=$mu2, 1 if $mu1>$mu2) Args : Bio::PhyloNetwork::muVector
This function is also overloaded to the <=> and cmp operator. |
Title : geq_poset Usage : $mu1->geq_poset($mu2) Function: compares $mu and $mu2 w.r.t. the natural partial ordering Returns : boolean (1 if $mu >= $mu2, 0 otherwise) Args : Bio::PhyloNetwork::muVector |
Title : is_positive Usage : $mu->is_positive() Function: tests if all components of $mu are positive (or zero) Returns : boolean Args : none |
Title : hamming Usage : $mu1->hamming($mu2) Function: returns the Hamming distance between $mu1 and $mu2 Returns : scalar Args : Bio::PhyloNetwork::muVector |
Title : manhattan Usage : $mu1->manhattan($mu2) Function: returns the Manhattan distance between $mu1 and $mu2 Returns : scalar Args : Bio::PhyloNetwork::muVector |
Methods code
sub new
{ my ($pkg,$cont)=@_;
my $self=$pkg->SUPER::new();
my @arr=();
if (!ref($cont)) {
for (my $i=0; $i < $cont; $i++) {
$arr[$i]=0;
}
$self->{arr}=\@arr;
} else {
@arr=@{$cont};
}
$self->{dim}=scalar @arr;
$self->{arr}=\@arr;
bless($self,$pkg);
return $self;} |
sub dim
{ return shift->{dim}
}
use overload
"+" =>\& add,
"-" =>\& substract,
"*" =>\& scalarproduct,
"<=>" =>\& comparelex,
"cmp" =>\& comparelex,
'""' =>\& display,
'@{}' =>\& as_array;} |
sub as_array
{ return shift->{arr};} |
sub display
{ my ($self)=@_;
my @arr=@{$self->{arr}};
return "(@arr)";} |
sub add
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
my @sum=();
for (my $i=0; $i<$dim; $i++) {
$sum[$i]=$v1->[$i]+$v2->[$i];
}
my $result=Bio::PhyloNetwork::muVector->new(\@sum);
return $result;} |
sub substract
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
my @sum=();
for (my $i=0; $i<$dim; $i++) {
$sum[$i]=$v1->{arr}->[$i]-$v2->{arr}->[$i];
}
my $result=Bio::PhyloNetwork::muVector->new(\@sum);
return $result;} |
sub scalarproduct
{ my ($v1,$num,$swapped)=@_;
my $dim=$v1->{dim};
my @sum=();
for (my $i=0; $i<$dim; $i++) {
$sum[$i]=$num*$v1->{arr}->[$i];
}
my $result=Bio::PhyloNetwork::muVector->new(\@sum);
return $result;
return $result;} |
sub comparelex
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
for (my $i=0; $i<$dim; $i++) {
return -1 if $v1->{arr}->[$i] < $v2->{arr}->[$i];
return 1 if $v1->{arr}->[$i] > $v2->{arr}->[$i];
}
return 0;} |
sub geq_poset
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
for (my $i=0; $i<$dim; $i++) {
return 0 unless $v1->[$i] >= $v2->[$i];
}
return 1;} |
sub is_positive
{ my ($v1)=@_;
my $dim=$v1->{dim};
for (my $i=0; $i<$dim; $i++) {
return 0 unless $v1->[$i] >= 0;
}
return 1;} |
sub hamming
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
my $w=0;
for (my $i=0; $i<$dim; $i++) {
$w++ unless $v1->[$i] == $v2->[$i];
}
return $w;} |
sub manhattan
{ my ($v1,$v2)=@_;
$v1->throw("Vectors not the same size") unless ($v1->{dim} == $v2->{dim});
my $dim=$v1->{dim};
my $w=0;
for (my $i=0; $i<$dim; $i++) {
$w+= abs($v1->[$i] - $v2->[$i]);
}
return $w;
}
1;} |
General documentation
Gabriel Cardona, gabriel(dot)cardona(at)uib(dot)es
The rest of the documentation details each of the object methods.