(series: Vec<f64>, diff_amt: f64, thresh: f64)
| 17 | |
| 18 | #[pyfunction(name = "frac_diff_ffd")] |
| 19 | fn fracdiff_frac_diff_ffd(series: Vec<f64>, diff_amt: f64, thresh: f64) -> Vec<f64> { |
| 20 | openquant::fracdiff::frac_diff_ffd(&series, diff_amt, thresh) |
| 21 | } |
| 22 | |
| 23 | pub fn register(py: Python<'_>, parent: &Bound<'_, PyModule>) -> PyResult<()> { |
| 24 | let m = PyModule::new(py, "fracdiff")?; |
nothing calls this directly
no test coverage detected