repa-algorithms-2.0.0.1: Algorithms using the Repa array library.

Data.Array.Repa.Algorithms.Matrix

Description

Algorithms operating on matrices.

These functions should give performance comparable with nested loop C implementations, but not block-based, cache friendly, SIMD using, vendor optimised implementions. If you care deeply about runtime performance then you may be better off using a binding to LAPACK, such as hvector.

Synopsis

Documentation

multiplyMM :: Array DIM2 Double -> Array DIM2 Double -> Array DIM2 DoubleSource

Matrix-matrix multiply.