Example: API documentation
Numerical Method example
Numerical Programming API
Non-Linear Solver
newtonRaphson()
double newtonRaphson(double x0, double tol);double tol = 0.00001;
double x0 = 3;
double NR_result;
β
NR_result = newtonRaphson(x0, tol);Linear Solver
gaussElim()
inv()
Numerical Differentiation
gradient1D()
Integration
integral()
ODE-IVP
odeEU()
Class or Header name
Function Name
Last updated