Package qubx :: Module ideal :: Class IdlIter
[hide private]
[frames] | no frames]

Class IdlIter

source code

object --+
         |
        IdlIter

Instance Methods [hide private]
 
__init__(self, iter)
Creates an IdlIter; If iter is an IdlIter, this creates a clone.
source code
 
__del__(self) source code
 
__nonzero__(self)
bool(iter) is True if iter points to a (partial) dwell, not past the end.
source code
 
__cmp__(self, other)
Returns 0 if other iterator points to the same (partial) dwell.
source code
 
segindex(self)
Returns the segment index of the current dwell.
source code
 
segfirst(self)
Returns the first sample index in the current dwell's segment.
source code
 
read(self)
Returns the first, last, and class indices of the current (partial) dwell.
source code
 
next(self)
Moves the iterator to the next (partial) dwell.
source code
 
prev(self)
Moves the iterator to the previous (partial) dwell.
source code

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

Properties [hide private]
  iter
  readinto

Inherited from object: __class__

Method Details [hide private]

__init__(self, iter)
(Constructor)

source code 

Creates an IdlIter; If iter is an IdlIter, this creates a clone.

Overrides: object.__init__