lapack-0.3: src/Numeric/LAPACK/Matrix/Special.hs
{-# LANGUAGE TypeFamilies #-}
module Numeric.LAPACK.Matrix.Special (
Type.Matrix(Scale,Inverse), Scale, Inverse,
) where
import qualified Numeric.LAPACK.Matrix.Inverse as Inverse
import qualified Numeric.LAPACK.Matrix.Type as Type
type Scale sh = Type.Matrix (Type.Scale sh)
type Inverse typ = Type.Matrix (Inverse.Inverse typ)