free-vector-spaces-0.1.5.1: Instantiate the classes from the vector-space package with types from linear
Copyright(c) Justus Sagemüller 2016
LicenseGPL v3
Maintainer(@) jsag $ hvl.no
Stabilityexperimental
Portabilityportable
Safe HaskellNone
LanguageHaskell2010

Data.VectorSpace.Free.FiniteSupportedSequence

Description

 
Synopsis

Documentation

newtype FinSuppSeq n Source #

The space of finitely-supported sequences is an infinite-dimensional space. An vector of length l is here understood as an infinite sequence that begins with l nonzero values, and continues with infinite zeroes.

You may also consider this as the type that languages like Octave/Matlab (as well as Haskell's hmatrix library) approximate with their “vectors”, with one important difference: there is no such thing as a dimensional-mismatch error, since we consider all these vectors as elements of the same infinite-dimensional space. Adding two different-size vectors will simply zero-pad the shorter, and unlike in Matlab this behaviour extends consequently to matrix multiplication etc. (defined in linearmap-category)

Of course it can make sense to constrain the dimension, but for this the type system should be used, not runtime checks.

(This is the same behaviour that the linear library gives to the standard list and vector types, but the problem there is that it can't use unboxed arrays as these are not functors, but unboxing is crucial for performance.)

Constructors

FinSuppSeq 

Fields

Instances

Instances details
Unbox n => IsList (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Item (FinSuppSeq n) #

(Unbox n, Show n) => Show (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, Unbox n) => AffineSpace (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Diff (FinSuppSeq n) #

(Num n, Unbox n) => HasBasis (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Basis (FinSuppSeq n) #

(Num n, Unbox n) => VectorSpace (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Scalar (FinSuppSeq n) #

Methods

(*^) :: Scalar (FinSuppSeq n) -> FinSuppSeq n -> FinSuppSeq n #

(Num n, AdditiveGroup n, Unbox n) => InnerSpace (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Methods

(<.>) :: FinSuppSeq n -> FinSuppSeq n -> Scalar (FinSuppSeq n) #

(Num n, Unbox n) => AdditiveGroup (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, AdditiveGroup n, Unbox n) => FreeVectorSpace (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (FinSuppSeq n) = n
type Diff (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Basis (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Basis (FinSuppSeq n) = Int
type Scalar (FinSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Scalar (FinSuppSeq n) = n

data SparseSuppSeq n Source #

Sparsely supported sequences (what other languages would call sparse vectors) are sequences consisting of lots of zeroes, with finitely many nonzeroes scattered around. Only these nonzero elements are stored.

Constructors

SparseSuppSeq 

Fields

Instances

Instances details
(Unbox n, Eq n, Num n) => IsList (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Item (SparseSuppSeq n) #

(Num n, Unbox n) => AffineSpace (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Diff (SparseSuppSeq n) #

(Num n, Unbox n) => HasBasis (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Basis (SparseSuppSeq n) #

(Num n, Unbox n) => VectorSpace (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Scalar (SparseSuppSeq n) #

(Num n, AdditiveGroup n, Unbox n) => InnerSpace (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, Unbox n) => AdditiveGroup (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, Unbox n) => FreeVectorSpace (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (SparseSuppSeq n) = n
type Diff (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Basis (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Scalar (SparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Scalar (SparseSuppSeq n) = n

data SemisparseSuppSeq n Source #

Like SparseSuppSeq, this type of number-sequence ignores zeroes and only stores nonzero elements with positional information, but it does this not for every single entry separately: only the first position of each contiguous chunk of nonzeroes is tracked. It is thus more suited for vectors that are in some places dense but still have lots of zeroes.

The drawback is that random access (i.e. decompose') has complexity 𝓞(𝑛) – instead of 𝓞(1) for FinSuppSeq, or 𝓞(log 𝑛) for SparseSuppSeq – so this type should only be used for “abstract vector operations”.

Constructors

SemisparseSuppSeq 

Fields

Instances

Instances details
(Unbox n, Eq n, Num n) => IsList (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Item (SemisparseSuppSeq n) #

(Num n, Unbox n) => AffineSpace (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Diff (SemisparseSuppSeq n) #

(Num n, Unbox n) => HasBasis (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Basis (SemisparseSuppSeq n) #

(Num n, Unbox n) => VectorSpace (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

Associated Types

type Scalar (SemisparseSuppSeq n) #

(Num n, AdditiveGroup n, Unbox n) => InnerSpace (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, Unbox n) => AdditiveGroup (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

(Num n, Unbox n) => FreeVectorSpace (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Item (SemisparseSuppSeq n) = n
type Diff (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Basis (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence

type Scalar (SemisparseSuppSeq n) Source # 
Instance details

Defined in Data.VectorSpace.Free.FiniteSupportedSequence