cheby 0.2.0

Unit-safe Chebyshev approximation and spectral numerics for Rust.
Documentation
1
2
3
4
fn main() {
    let series = cheby::approx::fit::fit_from_fn::<f64, 16>(f64::sin);
    println!("{}", series.evaluate(0.5));
}