<div>hi i was trying to solve it but </div>
<div> </div>
<div>All i got is </div>
<div>type Matrix=[[Double]]</div>
<div> </div>
<div>multMM :: Matrix -&gt; Matrix -&gt; Matrix --multiplies two matrices<br>multMM m t =    [[sum (zipWith (*) (head m)(a)) ] ]where  a = [head a | a&lt;-  t]</div>
<div> </div>
<div> </div>
<div>
<div>Main&gt; multMM [[2,1,-6],[1,-3,2]] [[1,0,-3],[0,4,20],[-2,1,1]]<br>[[14.0]] </div>
<div> </div></div>
<div>from this i could get only the first multiplication 14    that is by  2*1 + 1*0 + -6*-2 = 14</div>
<div> </div>
<div>how can i make this go throw all rows and colums to get multiple of matrixs?</div>
<div> </div>
<div>Thank you~</div>
<div> </div>
<div> </div>