in reply to Math::Matrix and getting matrix elements

A quick look at the source says that the Math::Matrix objects are blessed arrays of arrays. This means you should be able to access the value of A(i, j) with the syntax $matrix->[i][j]. See perlreftut or perllol for more information. It does not look like the author provided getter/setter routines.