Package PyDSTool :: Package PyCont :: Module TestFunc :: Class Hopf_Bor
[hide private]
[frames] | no frames]

Class Hopf_Bor

source code

object --+            
         |            
  Function --+        
             |        
      TestFunc --+    
                 |    
      BorderMethod --+
                     |
object --+           |
         |           |
  Function --+       |
             |       |
      TestFunc --+   |
                 |   |
       BiAltMethod --+
                     |
                    Hopf_Bor

Instance Methods [hide private]
 
__init__(self, F, C, update=True, corr=True, save=False, numpoints=None)
F: R^a --> R^b
source code
 
setdata(self, X, V)
Note: p, q <= min(n,m)
source code
 
func(self, X, V) source code
 
diff(self, X, ind=None)
This is recreated from Function class above for TestFunc class.
source code

Inherited from BorderMethod: getVW, updatedata

Inherited from BiAltMethod: bialtprod, bialtprodeye

Inherited from TestFunc: findzero

Inherited from Function: __call__, __getitem__, __setitem__, numhess

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, F, C, update=True, corr=True, save=False, numpoints=None)
(Constructor)

source code 

F: R^a --> R^b

Note: I did not assign b automatically (although I could - it would just be b = p*q) since you may not want to use all of the entries of S. Some bordering methods are not minimally augmented systems and thus only require certain entries of S.

Overrides: object.__init__
(inherited documentation)

setdata(self, X, V)

source code 

Note: p, q <= min(n,m)

Overrides: BorderMethod.setdata
(inherited documentation)

func(self, X, V)

source code 
Overrides: BorderMethod.func

diff(self, X, ind=None)

source code 

This is recreated from Function class above for TestFunc class. Why, you ask? Because for test functions, the jacobian of the parent function F needs to be computed before every test function call. Unforunately, this slows things down, but that is unavoidable.

Overrides: Function.diff