Safe Haskell | None |
---|
Data.Tensor.Vector
Description
This module define a datatype
which implements the
classes and methods defined in Data.Tensor and
Data.Tensor.LinearAlgebra. It is represented internally as a
Tensor
.
Vector
Documentation
Instances
type ColumnVector n = Matrix n OneSource
vector2ColumnVector :: Vector n e -> ColumnVector n eSource
columnVector2Vector :: ColumnVector n e -> Vector n eSource
vector2RowVector :: Vector n e -> RowVector n eSource
rowVector2Vector :: RowVector n e -> Vector n eSource
class FromVector t whereSource
Methods
fromVector :: Vector e -> t eSource
Instances
MultiIndex i => FromVector (Tensor i) |
module Data.Tensor