Skip to content

Latest commit

 

History

History

root_finding

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Root finding

Target Function

Find x such that f(x) = g(x)

  • f(x) = exp(x)
  • g(x) = x + 2

Method

Use bisection method

Build Process

# Build
cargo build --release

# Run
cargo run --release