[Haskell-cafe] Re: matrix computations based on the GSL

Keean Schupke k.schupke at imperial.ac.uk
Fri Jul 8 11:17:50 EDT 2005


Is a matrix is a linear operation on a vector, does it not make sense to
define matrix applicaion:

    mapply :: Matrix -> Vector -> Vector

Then you can define say:

    rotate90 = mapply rotationMatrix90

    v' = rotate90  v


Keean.


More information about the Haskell-Cafe mailing list