cheby 0.4.0

Unit-safe Chebyshev approximation and spectral numerics for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0308]: mismatched types
  --> tests/trybuild/invalid_integral_assignment.rs:8:30
   |
 8 |       let position: Velocity = series
   |  ___________________--------___^
   | |                   |
   | |                   expected due to this
 9 | |         .evaluate_integral_from_start(qtty::Second::new(0.5))
10 | |         .unwrap();
   | |_________________^ expected `Quantity<Per<Kilometer, Second>>`, found `Quantity<Kilometer>`
   |
   = note: expected struct `Quantity<Per<Kilometer, Second>>`
              found struct `Quantity<Kilometer>`