Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem to unfold a matrix. Here is how the output of the programm should look like. I am little bit stuck.

unfoldMatrix :: [ [a] ] -> [a]
Main> unfoldMatrix [[1, 2, 3],
                [4, 5, 6],
                [7, 8, 9],
                [10, 11, 12]]
[1,4,7,10,11,12,9,6,3,2,5,8]

My code works but it's output is in this format

[[1,4,7],[8,9],[6,3],[2],[5],[]]

Any ideat how to change the code to work as wanted?

transpose2:: [[a]]->[[a]]
transpose2 ([]:_) = []
transpose2 x = (map head x) : transpose2 (map tail x)


unfoldMatrix:: [[a]]->[[a]]
unfoldMatrix ([]:_) = []
unfoldMatrix x =(map head x):unfoldMatrix(tail2(x))

rotate90 :: [ [ a ] ] -> [ [ a ] ]
rotate90 = (map reverse).transpose2

tail2:: [[a]]->[[a]]
tail2 = (tail).rotate90
share|improve this question
5  
hmm, you're looking for a function that converts a list of lists to a list... – rampion May 25 '12 at 20:33
thanks :) useful link! – totpiko May 25 '12 at 20:45
1  
You could simply relace the : in unfoldMatrix x =(map head x):unfoldMatrix(tail2(x)) with a ++. – Daniel Fischer May 25 '12 at 20:47
I can see from your example how your unfold operation works, but can you provide a reference for it? – gcbenison May 26 '12 at 17:10

1 Answer

up vote 1 down vote accepted

You don't need transpose2, if all sublists are equally long, that's the same as transpose from Data.List. So your unfold would simply be

Prelude Data.List> let unfold xxs@((_:_):_) = map head xxs ++ unfold (map reverse . transpose $ map tail xxs); unfold _ = []
Prelude Data.List> unfold [[1,2,3],[4,5,6],[7,8,9]]
[1,4,7,8,9,6,3,2,5]
Prelude Data.List> unfold [[1,2,3],[4,5,6],[7,8,9],[10,11,12]]
[1,4,7,10,11,12,9,6,3,2,5,8]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.