in reply to Re^2: Question about returning array from sub
in thread Question about returning array from sub

This is output of the Dumper -
$VAR1 = [ [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, '1' ] ]; $VAR1 = [ [ '0.99985288395361', '-0.0139786208260096', '0.00994025198128738' ], [ '0.0138118911491265', '0.999766001562737', '0.0166485369370161' ], [ '-0.0101706495630081', '-0.0165087939917233', '0.999811991130535' ] ];

Replies are listed 'Best First'.
Re^4: Question about returning array from sub
by QM (Parson) on Jul 10, 2015 at 13:38 UTC
    Yes! That's how I expect a 2D array reference to dump. Is that what you expect?

    -QM
    --
    Quantum Mechanics: The dreams stuff is made of

Re^4: Question about returning array from sub
by ojagan (Novice) on Jul 10, 2015 at 14:04 UTC
    The output is as expected here.