Package teamwork :: Package math :: Module KeyedMatrix :: Class DynamicsMatrix
[hide private]
[frames] | no frames]

Class DynamicsMatrix

source code

object --+        
         |        
      dict --+    
             |    
   KeyedMatrix --+
                 |
                DynamicsMatrix
Known Subclasses:

Matrix subclass that provides some structure to be exploited for greater user friendliness

Nested Classes [hide private]
  rowClass
Subclass for rows used to compute deltas in dynamics
Instance Methods [hide private]
new empty dictionary

__init__(self, source=None, key=None, value=0.0)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__copy__(self) source code
 
__deepcopy__(self, memo) source code
 
__xml__(self)
Returns: An XML Document object representing this matrix
source code

Inherited from KeyedMatrix: __add__, __delitem__, __hash__, __mul__, __neg__, __setitem__, __sub__, addColumns, addRows, colKeys, colOrder, compose, copyFromArray, deleteColumn, fill, freeze, getArray, instantiate, instantiateKeys, inverse, isIdentity, merge, parse, rowKeys, rowPosition, set, simpleText, unfreeze

Inherited from dict: __cmp__, __contains__, __eq__, __ge__, __getattribute__, __getitem__, __gt__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __repr__, clear, copy, fromkeys, get, has_key, items, iteritems, iterkeys, itervalues, keys, pop, popitem, setdefault, update, values

Inherited from object: __delattr__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]

Inherited from KeyedMatrix: defaultValue, dimension

Instance Variables [hide private]

Inherited from KeyedMatrix (private): _array, _fresh, _frozen, _rowKeys, _rowOrder

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, source=None, key=None, value=0.0)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Returns:
new empty dictionary

Overrides: object.__init__
(inherited documentation)

__copy__(self)

source code 
Overrides: KeyedMatrix.__copy__

__deepcopy__(self, memo)

source code 
Overrides: KeyedMatrix.__deepcopy__

__xml__(self)

source code 
Returns:
An XML Document object representing this matrix
Overrides: KeyedMatrix.__xml__