Skip to content

Commit

Permalink
Merge pull request #73 from NREL/multilinear
Browse files Browse the repository at this point in the history
replace interp2d with n-dimensional interpolator
  • Loading branch information
calbaker authored Dec 1, 2023
2 parents fcf88ea + 0e525e9 commit 05d46c1
Show file tree
Hide file tree
Showing 3 changed files with 251 additions and 191 deletions.
1 change: 1 addition & 0 deletions rust/fastsim-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ lazy_static = "1.4.0"
regex = "1.7.1"
rayon = "1.7.0"
include_dir = "0.7.3"
itertools = "0.12.0"
ndarray-stats = "0.5.1"

[package.metadata]
Expand Down
2 changes: 1 addition & 1 deletion rust/fastsim-core/src/imports.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pub(crate) use anyhow::{anyhow, bail, ensure, Context};
pub(crate) use bincode;
pub(crate) use log;
pub(crate) use ndarray::{array, concatenate, s, Array, Array1, Axis};
pub(crate) use ndarray::{array, s, Array, Array1, Axis};
pub(crate) use ndarray_stats::QuantileExt;
pub(crate) use serde::{Deserialize, Serialize};
pub(crate) use std::cmp;
Expand Down
Loading

0 comments on commit 05d46c1

Please sign in to comment.