pub type Taylor64<const K: usize> = Taylor<f64, K>;Available on crate feature
taylor only.Expand description
Type alias for Taylor coefficients over f64 with K coefficients.
Aliased Type§
pub struct Taylor64<const K: usize> {
pub coeffs: [f64; K],
}Fields§
§coeffs: [f64; K]Raw coefficient array: coeffs[k] = f^(k)(t0) / k!.