Sha256: 0b05ab0acdacccb840372758a3dc911aab746c523260459669c264668f79da25
Contents?: true
Size: 742 Bytes
Versions: 61
Compression:
Stored size: 742 Bytes
Contents
module Matrix ( Matrix , cols , column , flatten , fromList , fromString , reshape , row , rows , shape , transpose ) where import Data.Vector (Vector) cols :: Matrix a -> Int cols = undefined column :: Int -> Matrix a -> Vector a column = undefined flatten :: Matrix a -> Vector a flatten = undefined fromList :: [[a]] -> Matrix a fromList = undefined fromString :: Read a => String -> Matrix a fromString = undefined reshape :: (Int, Int) -> Matrix a -> Matrix a reshape = undefined row :: Int -> Matrix a -> Vector a row = undefined rows :: Matrix a -> Int rows = undefined shape :: Matrix a -> (Int, Int) shape = undefined transpose :: Matrix a -> Matrix a transpose = undefined
Version data entries
61 entries across 61 versions & 1 rubygems