First, your mirrorXY' can be written with higher-order functions map and iterate instead of direct recursion:
mirr m = map (map head) . iterate (map tail) $ m
... and this blows up on hitting the empty list, as you've discovered:
*Main> map (map head) . iterate (map tail) $ [[1..4],[2..5],[3..6]]
[[1,2,3],[2,3,4],[3,4,5],[4,5,6],[*** Exception: Prelude.head: empty list
Let's try it out without the first part:
*Main> iterate (map tail) $ [[1..4],[2..5],[3..6]]
[[[1,2,3,4],[2,3,4,5],[3,4,5,6]],[[2,3,4],[3,4,5],[4,5,6]],[[3,4],[4,5],[5,6]],[
[4],[5],[6]],[[],[],[]],[*** Exception: Prelude.tail: empty list
*Main>
So it's easy to fix: we just need to stop on hitting the [] in the input list:
*Main> takeWhile (not.null.head) . iterate (map tail) $ [[1..4],[2..5],[3..6]]
[[[1,2,3,4],[2,3,4,5],[3,4,5,6]],[[2,3,4],[3,4,5],[4,5,6]],[[3,4],[4,5],[5,6]],[
[4],[5],[6]]]
so, the function is
mirr xs = map (map head) . takeWhile (not.null.head) . iterate (map tail) $ xs
This presupposes that all the sublists are of equal lengths (or at least that the first one is the shortest), but that is easy to fix by tweaking the test in takeWhile:
mirr xs = map (map head) . takeWhile (all (not.null)) . iterate (map tail) $ xs
transposein the question, before you posted your comment. – chrisdew Jul 8 '12 at 16:11