X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FLinear%2FVector.hs;h=ec6ebcbfba47722110a056e90fb2590f93c8ed7d;hb=e4c2b71137d47045670cba23d420ea10a9e827b5;hp=a7885e4aea628b91fdb205b232602082e52093e5;hpb=221805e711475880d37fb7bb6d7a0b04689b1ebe;p=numerical-analysis.git diff --git a/src/Linear/Vector.hs b/src/Linear/Vector.hs index a7885e4..ec6ebcb 100644 --- a/src/Linear/Vector.hs +++ b/src/Linear/Vector.hs @@ -14,6 +14,7 @@ import Data.Vector.Fixed ( N2, N3, N4, + N5, S, Vector(..), construct, @@ -24,7 +25,11 @@ import Data.Vector.Fixed ( import qualified Data.Vector.Fixed as V ( length, ) +import Data.Vector.Fixed.Boxed +type Vec1 = Vec N1 +type Vec4 = Vec N4 +type Vec5 = Vec N5 -- * Low-dimension vector wrappers. --