feat: ✨ differential_evolution
This commit is contained in:
parent
ba805501c0
commit
6584d8d24d
3 changed files with 152 additions and 2 deletions
|
@ -2,11 +2,11 @@
|
|||
|
||||
## Steepest Descent
|
||||
|
||||
1- We need starting solution x^t. Zeroise the iteration which is t. Specify tolerance value as ε.
|
||||
1- We need starting solution x^t. Reset the iteration which is t. Specify tolerance value as ε.
|
||||
|
||||
2- at x^t point calculate g^t gradient and ||g^t|| then if ||g^t|| <= ε stop it, else continue.
|
||||
|
||||
3- Specfify road direction as d^t = -g^t.
|
||||
3- Specify road direction as d^t = -g^t.
|
||||
|
||||
4- Calculate f(x^t + a^t*d^t) as like a^t (step size) is minimum.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue