numhask-array-0.6.0: n-dimensional arrays

Safe HaskellNone
LanguageHaskell2010

NumHask.Array

Contents

Description

Numbers that can be indexed into with an Int list.

Synopsis

Imports

import NumHask.Array

imports the fixed version of Array and Shape

In many situations, where shape is being tracked or otherwise only known at runtime, a clear module arrangement is:

import NumHask.Array.Shape
import qualified NumHask.Array.Fixed as F
import qualified NumHask.Array.Dynamic as D

A hmatrix instance of Array is also provided for performance purposes:

import NumHask.Array.Shape
import qualified NumHask.Array.HMatrix as H