Safe Haskell | None |
---|
SDIF matrix functions.
- data Matrix = Matrix {}
- decode_matrix :: ByteString -> Matrix
- list_section :: [a] -> Int -> Int -> [a]
- matrix_row :: Matrix -> Int -> [Datum]
- matrix_column :: Matrix -> Int -> [Datum]
Documentation
SDIF matrix data store.
Matrix | |
|
decode_matrix :: ByteString -> MatrixSource
Decode Matrix
.
list_section :: [a] -> Int -> Int -> [a]Source
Section of list from ith to jth indices.
list_section [1..9] 4 6 == [5,6]