File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,6 @@ sub as_vector($)
453
453
454
454
}
455
455
456
-
457
456
=head3 get_elem()
458
457
459
458
Returns an element of a matrix.
@@ -467,8 +466,6 @@ with indice 0.
467
466
468
467
=cut
469
468
470
- sub element { get_elem(@_); } # compatibility with Math::MatrixReal
471
-
472
469
sub get_elem {
473
470
my ($self, $row, $col) = @_;
474
471
die __PACKAGE__.'::get_elem($x, $y, $v) - $x must be a valid row number'
@@ -626,8 +623,6 @@ sub zero # brrr!
626
623
627
624
=head3 set_elem()
628
625
629
- =head3 assign()
630
-
631
626
Sets a specific value in the matrix.
632
627
633
628
my $matrix = Math::GSL::Matrix->new(2,2);
@@ -642,9 +637,6 @@ with indice 0.
642
637
643
638
=cut
644
639
645
- # added this to add compatibility with Math::RealMatrix. Useful.
646
- sub assign { set_elem(@_); }
647
-
648
640
sub set_elem {
649
641
my ($self, $row, $col, $value) = @_;
650
642
die __PACKAGE__.'::set_elem($x, $y, $v) - $x must be a valid row number'
You can’t perform that action at this time.
0 commit comments