rbf_interpolation/
lib.rs

1#![feature(generic_const_exprs)]
2#![allow(incomplete_features)]
3
4extern crate nalgebra as na;
5
6pub mod builder;
7mod kernel;
8mod powers;
9pub mod rbf;
10mod test;