Package parsimony :: Package functions :: Module properties :: Class CombinedProjectionOperator
[hide private]
[frames] | no frames]

Class CombinedProjectionOperator

source code

        object --+    
                 |    
          Function --+
                     |
        object --+   |
                 |   |
ProjectionOperator --+
                     |
                    CombinedProjectionOperator

Nested Classes [hide private]

Inherited from Function: __metaclass__

Instance Methods [hide private]
 
__init__(self, functions)
Functions must currently be a tuple or list with two projection operators.
source code
 
f(self, x)
Function value.
source code
 
proj(self, x)
The projection operator corresponding to the function.
source code

Inherited from Function: get_params, reset, set_params

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

Class Variables [hide private]
  __abstractmethods__ = frozenset([])
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, functions)
(Constructor)

source code 

Functions must currently be a tuple or list with two projection operators.

Overrides: object.__init__

f(self, x)

source code 

Function value.

Overrides: Function.f
(inherited documentation)

proj(self, x)

source code 

The projection operator corresponding to the function.

From the interface "ProjectionOperator".

Overrides: ProjectionOperator.proj