ndarray-interp 0.6.0

Interpolation package for ndarray
Documentation
[package]
name = "ndarray-interp"
version = "0.6.0"
edition = "2021"
license = "MIT"
description = "Interpolation package for ndarray"
repository = "https://github.com/jonasBoss/ndarray-interp"

keywords = ["interpolation", "multidimensional", "linear", "bilinear", "cubic-spline"]
categories = ["science", "algorithms", "mathematics"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ndarray = "0.17"
num-traits = "0.2"
thiserror = "2.0"

[dev-dependencies]
ndarray = {version = "0.17", features = ["approx", "rayon"] }
approx = "0.5"
criterion = "0.8.1"
rand = "0.9"

[[bench]]
name = "bench_vector_extensions"
harness = false

[[bench]]
name = "bench_interp1d"
harness = false

[[bench]]
name = "bench_interp1d_query_dim"
harness = false

[[bench]]
name = "bench_interp2d"
harness = false

[[bench]]
name = "bench_interp2d_query_dim"
harness = false