-- Hoogle documentation, generated by Haddock
-- See Hoogle, http://www.haskell.org/hoogle/


-- | Adaptors for interoperability between hmatrix and repa
--   
--   Adaptors for interoperability between hmatrix and repa
@package hmatrix-repa
@version 0.1.2.2


-- | Repa / hmatrix conversion functions
module Data.Packed.Repa

-- | convert a Storable vector to a DIM1 repa array
vectorToRepa :: (Storable e, Vector Vector e, Container Vector e) => Vector e -> Array V DIM1 e

-- | convert a 1d repa array to a Storable vector
repaToVector :: (Vector Vector e) => Array V DIM1 e -> Vector e

-- | convert a Storable matrix to a DIM2 repa array
matrixToRepa :: (Element e, Vector Vector e) => Matrix e -> Array V DIM2 e

-- | convert a 2d repa array to a Storable matrix
repaToMatrix :: (Storable e, Vector Vector e) => Array V DIM2 e -> Matrix e
