[][src]Module plotlib::function

Plot arbitrary functions

Examples

// y=x^2 between 0 and 10
let f = Function::new(|x| x*x, 0., 10.);
let v = ContinuousView::new().add(&f);

Structs

Function
Style