in reply to accessing elements inside Math::Matrix
I've never used Math::Matrix myself... but if you can get at the desired value using ${${$variable}[0]}[0], you should also be able to use the more compact and easier to read syntax
$variable->[0][0]
|
|---|