cheby 0.4.0

Unit-safe Chebyshev approximation and spectral numerics for Rust.
Documentation
1
2
3
4
5
6
use cheby::ChebySeries;

fn main() {
    let series = ChebySeries::new([1.0, 2.0, 0.5]);
    println!("{}", series.evaluate(0.25));
}