Supported Features

Api

You can create a function using Function::build("x*sin(x)").unwrap(), the argument is a &str. let func = Function::build("x*sin(x)").unwrap(); let derivative = func.derivative(); let y = derivative.evaluate(10.); let integral = func.integrate(0., 10.);