hTensor-0.7.0.1: Multidimensional arrays and simple tensor computations.

Stabilityexperimental
MaintainerAlberto Ruiz <aruiz@um.es>

Numeric.LinearAlgebra.Multivector

Description

A simple implementation of Geometric Algebra.

The Num instance provides the geometric product, and the Fractional instance provides the inverse of multivectors.

This module provides a simple Euclidean embedding.

Synopsis

Documentation

scalar :: Double -> MultivectorSource

Creates a scalar multivector.

vector :: [Double] -> MultivectorSource

Creates a grade 1 multivector of from a list of coordinates.

e :: Int -> MultivectorSource

The k-th basis element.

(/\) :: Multivector -> Multivector -> MultivectorSource

The exterior (outer) product.

(-|) :: Multivector -> Multivector -> MultivectorSource

The contractive inner product.

(\/) :: Multivector -> Multivector -> MultivectorSource

Intersection of subspaces.

rever :: Multivector -> MultivectorSource

The reversion operator.

full :: Int -> MultivectorSource

The full space of the given dimension. This is the leviCivita simbol, and the basis of the pseudoscalar.

rotorSource

Arguments

:: Int

dimension of the space

-> Double

angle

-> Multivector

axis

-> Multivector

result

The rotor operator, used in a sandwich product.

apply :: (Int -> Multivector) -> Multivector -> MultivectorSource

Apply a linear transformation, expressed as the image of the element i-th of the basis.

(This is a monadic bind!)

fromTensor :: Tensor Double -> MultivectorSource

Extract a multivector representation from a full antisymmetric tensor.

(We do not check that the tensor is actually antisymmetric.)