First of all, to answer your actual question, don't use (0, 0) as the exceptional result. Your function's type should be:
matrixDim :: [[a]] -> Maybe (Int, Int)
If the matrix is invalid, the result will be Nothing. Now first check what the length of the first sublist is. I'm assuming that a matrix must have at least one row and one column:
matrixDim [] = Nothing
Now you can use the fact that Maybe is a monad:
matrixDim (xs:xss) = do
let w = length xs
guard (w > 0)
(w', h) <- matrixDim xss <|> return (w, 0)
guard (w == w')
return (w, h + 1)
And now let's get back to the actual problem at hand: A list of lists is not what you want. A much better data type for this kind of application is an array as defined in one of the Data.Array.* modules. A more experimental alternative, where you get parallelization for free, is to use repa.
map length. – Cat Plus Plus Nov 15 '12 at 5:45