scirs2-interpolate 0.4.1

Interpolation module for SciRS2 (scirs2-interpolate)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Sparse grid interpolation and quadrature methods.
//!
//! - `core`: hierarchical hat-function sparse grid (existing)
//! - `smolyak`: Smolyak construction with Clenshaw-Curtis, Gauss-Legendre, and Gauss-Patterson rules

pub mod core;
pub mod smolyak;

pub use core::*;
pub use smolyak::{
    smolyak_grid, smolyak_interpolant, smolyak_quadrature, SmolyakConfig, SmolyakGrid, SmolyakRule,
};