Module plotlib::function [] [src]

Plot arbitrary functions

Examples

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

Structs

Function
Style