Package PyDSTool :: Module Points :: Class Point
[hide private]
[frames] | no frames]

Class Point

source code

object --+
         |
        Point
Known Subclasses:

N-dimensional point class.

Instance Methods [hide private]
 
__abs__(self) source code
 
__add__(self, other) source code
 
__call__(self, coords) source code
 
__contains__(self, coord) source code
 
__copy__(self) source code
 
__delitem__(self, k) source code
 
__div__(self, other) source code
 
__eq__(self, other) source code
 
__ge__(self, other) source code
 
__getitem__(self, coords) source code
 
__getstate__(self) source code
 
__gt__(self, other) source code
 
__init__(self, kwd=None, **kw)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__le__(self, other) source code
 
__len__(self) source code
 
__lt__(self, other) source code
 
__mul__(self, other) source code
 
__ne__(self, other) source code
 
__neg__(self) source code
 
__pos__(self) source code
 
__pow__(self, other) source code
 
__radd__(self, other) source code
 
__rdiv__(self, other) source code
 
__repr__(self)
str(x)
source code
 
__rmul__(self, other) source code
 
__rsub__(self, other) source code
 
__rtruediv__(self, other) source code
 
__setitem__(self, ixarg, val)
Change coordinate array values.
source code
 
__setstate__(self, state) source code
 
__str__(self)
str(x)
source code
 
__sub__(self, other) source code
 
__truediv__(self, other) source code
 
_force_coords_to_ixlist(self, x) source code
 
_infostr(self, verbose=0) source code
 
_map_names_to_ixs(self, namelist) source code
 
addlabel(self, label) source code
 
copy(self) source code
 
get(self, coord, d=None) source code
 
has_key(self, k) source code
 
info(self, verboselevel=1) source code
 
items(self) source code
 
iteritems(self) source code
 
iterkeys(self) source code
 
itervalues(self) source code
 
keys(self) source code
 
makeIxMaps(self) source code
 
mapNames(self, themap)
Map coordinate names and label(s), using a symbol map of class symbolMapClass.
source code
 
removelabel(self) source code
 
toarray(self) source code
 
todict(self, aslist=False)
Convert Point to a dictionary of array values (or of list with aslist=True).
source code
 
update(self, d) source code
 
values(self) source code

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, kwd=None, **kw)
(Constructor)

source code 

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

Overrides: object.__init__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

str(x)

Overrides: object.__repr__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)