Package pod :: Module linalg :: Class VectorMatrix
[frames] | no frames]

Class VectorMatrix

source code

object --+    
         |    
    Matrix --+
             |
            VectorMatrix

Makes a vector compatible with Matrix operations.

Instance Methods
 
__init__(self, vector)
Column vector.
source code

Inherited from Matrix: __repr__, add, cofactors, copy, determinant, get_dim_col, get_dim_row, get_dimension, get_table, get_value, inverse, minor, multiply, pseudo_inverse, scale, set_table, set_value, sub, transpose

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

Properties

Inherited from object: __class__

Method Details

__init__(self, vector)
(Constructor)

source code 

Column vector.

Use transpose() to turn it into a row vector.

Overrides: object.__init__