1 个不稳定版本

0.0.3 2024年6月4日

#1747 in 算法


用于 libreda-sta

GPL-3.0 或更高版本

25KB
426

1D & 2D 插值

interp 提供了一维和二维数组的插值函数。

示例

use interp::interp2d::Interp2D;

// Create 2D array of values.
let grid = ndarray::array![
    [0.0f64, 0.0, 0.0],
    [0.0, 1.0, 0.0],
    [0.0, 0.0, 0.0]
];

// Create grid coordinates.
let xs = vec![0.0, 1.0, 2.0];
let ys = vec![3.0, 4.0, 5.0];

// Create interpolator struct.
let interp = Interp2D::new(xs, ys, grid);

// Evaluate the interpolated data at some point.
assert!((interp.eval_no_extrapolation((1.0, 4.0)).unwrap() - 1.0).abs() < 1e-6);

lib.rs:

一维和二维数据的插值。

依赖

~1.5MB
~26K SLoC