On Fri, Jun 12, 2009 at 10:58 AM, yary<[email protected]> wrote: >> * you can rearrange the dimensions themselves (e.g., transpose). > > Reflecting on 2 or more axes creates a transposition.
No, it doesn't:
@a = (1, 2, 3; 4, 5, 6; 7, 8, 9);
Reflecting on two axes would result in:
@a = (9, 8, 7; 6, 5, 4; 3, 2, 1);
Transposing the axes would result in:
@a = (1, 4, 7; 2, 5, 8; 3, 6, 9);
--
Jonathan "Dataweaver" Lang
