vector-space-0.7.3: Vector & affine spaces, linear maps, and derivatives (requires ghc 6.9 or better)

Stabilityexperimental
Maintainerconal@conal.net

Data.Basis

Description

Basis of a vector space, as an associated type This module requires ghc-6.10 or later

Synopsis

Documentation

class VectorSpace v => HasBasis v whereSource

Associated Types

type Basis v :: *Source

Representation of the canonical basis for v

Methods

basisValue :: Basis v -> vSource

Interpret basis rep as a vector

decompose :: v -> [(Basis v, Scalar v)]Source

Extract coordinates

decompose' :: v -> Basis v -> Scalar vSource

Experimental version. More elegant definitions, and friendly to infinite-dimensional vector spaces.

linearCombo :: VectorSpace v => [(v, Scalar v)] -> vSource

Linear combination

recompose :: HasBasis v => [(Basis v, Scalar v)] -> vSource