rbf-interpolation 0.1.1

Radial basis function interpolation in Rust using nalgebra
Documentation
1
2
3
4
5
6
7
8
9
10
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]

extern crate nalgebra as na;

pub mod builder;
mod kernel;
mod powers;
pub mod rbf;
mod test;