Someone said that I might not be "getting" how to proper code in Haskell. That someone must be totally right, as I feel all my haskell code but the simpler functions is really ugly (at least compared to my OOP code in a "standard" language such as Java or C++):
mev = matrixExpValues 5 4 3
cs = canonicalSt 4 3
cs_t1 = map (foldl (++) "") (map (map show) cs)
cs_t2 = map (++ ":") cs_t1
mev_t1 = intXxsToStringXxs mev
mev_t2 = map (map (++ "\t")) mev_t1
mev_t3 = map (foldl (++) "") mev_t2
res1 = zipWith (++) (map (++ "\t") cs_t2) mev_t3
res2 = map (++ "\n") res1
final_result = foldl (++) "" res2
with mev and cs of:
*Main> mev
[[2,-2,-2,-6],[4,2,0,-2],[2,2,4,4],[6,4,2,2],[6,4,2,6]]
*Main> cs
[[0,0,4],[0,1,3],[0,2,2],[1,1,2]]
(those values were hand typed, I will need this to work for arbitrary mev and cs!)
I initially have a 2D matrix to which I applied a sequence of operations until I got the desired result.
This works, but now I'd like to encapsulate all this logic in a single function (let's call it matrix_transf). The current code is tied to what matrixExpValues and canonicalSt return, and I'd like to have something like
matrix_transf mev cs =
...all those transformations
...until I get to final_result
All kind of criticism is welcome (I need it so I can improve!) I believe good Haskell coders will probably approach this in a total different way and that is what I am looking for to know!
