(diff_amt: f64, thresh: f64, lim: usize)
| 7 | |
| 8 | #[pyfunction(name = "get_weights_ffd")] |
| 9 | fn fracdiff_get_weights_ffd(diff_amt: f64, thresh: f64, lim: usize) -> Vec<f64> { |
| 10 | openquant::fracdiff::get_weights_ffd(diff_amt, thresh, lim) |
| 11 | } |
| 12 | |
| 13 | #[pyfunction(name = "frac_diff")] |
| 14 | fn fracdiff_frac_diff(series: Vec<f64>, diff_amt: f64, thresh: f64) -> Vec<f64> { |
nothing calls this directly
no test coverage detected