dynamo.vf.FixedPoints

class dynamo.vf.FixedPoints(X=None, J=None)[source]

The FixedPoints class stores a list of fixed points and their corresponding Jacobian matrices, and provides methods for computing the eigenvalues of the Jacobian matrices, determining the stability of the fixed points, and identifying saddle/stable fixed points.

Methods table

Methods

FixedPoints.add_fixed_points(X, J, tol_redundant=0.0001)[source]
Return type:

None

FixedPoints.compute_eigvals()[source]
Return type:

None

FixedPoints.get_J()[source]
Return type:

ndarray

FixedPoints.get_X()[source]
Return type:

ndarray

FixedPoints.get_fixed_point_types()[source]
Return type:

ndarray

FixedPoints.is_saddle()[source]
Return type:

Tuple[ndarray, ndarray]

FixedPoints.is_stable()[source]
Return type:

ndarray