-
Notifications
You must be signed in to change notification settings - Fork 0
math.NumApprox
Christian d'Heureuse edited this page Jun 6, 2026
·
1 revision
dsp-collection / math/NumApprox
Routines for numerical approximation and optimization.
| Function | Description |
|---|---|
| argMax_goldenSectionSearch | Searches for the argument of a function maximum by using golden-section search. |
| argMax_scanArith | Searches for the argument of a function maximum by using an arithmetic progression for the arguments. |
| argMax_scanGeom | Searches for the argument of a function maximum by using a geometric progression for the arguments. |