Package pod :: Module vecspace :: Class VectorSubspace
[frames] | no frames]

Class VectorSubspace

source code

object --+
         |
        VectorSubspace

Defines a set on which we can project a point.

Instance Methods
 
__init__(self, *points)
Defining a n-subspace generated by n points.
source code
 
project(self, point)
The solution implies (x - x*) perpendicular to each y[i] with x* = sum( alpha[i] * y[i] ) and y[i]: points generating the subspace.
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties

Inherited from object: __class__

Method Details

__init__(self, *points)
(Constructor)

source code 

Defining a n-subspace generated by n points.

Overrides: object.__init__