Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 583 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 583 Bytes

.github/workflows/ant.yml

Funz algorithm: Brent

  • Brent method for 1D root finding
  • author: Miguel Munoz Zuniga
  • ref: https://en.wikipedia.org/wiki/Brent%27s_method
  • tags: Inversion
  • options: ytarget='0.0';ytol='3.e-8';xtol='1.e-8';max_iterations='100'
  • input: x=list(min=0,max=1) # 1 dimensional real interval
  • output: y=0.01 # 1 dimensional real

Analytics