cosapp.core.numerics.enum¶
Classes
|
Enumeration of non-linear algorithm available. |
-
class
cosapp.core.numerics.enum.NonLinearMethods(value)[source]¶ Bases:
enum.EnumEnumeration of non-linear algorithm available.
POWELL : Modified Powell method using MINPACK’s hybrd and hybrj routines BROYDEN_GOOD : Broyden’s first Jacobian approximation. This method is also known as “Broyden’s good method”. NR : Simple Newton-Raphson
-
BROYDEN_GOOD= 'broyden1'¶
-
NR= 'cosapp'¶
-
POWELL= 'hybr'¶
-