(message: String, window: usize)
| 119 | } |
| 120 | |
| 121 | #[pyfunction(name = "sigma_mapping")] |
| 122 | fn ms_sigma_mapping(array: Vec<f64>, step: f64) -> PyResult<Vec<(f64, char)>> { |
| 123 | openquant::microstructural_features::sigma_mapping(&array, step).map_err(to_py_err) |
| 124 | } |
| 125 | |
| 126 | #[pyfunction(name = "encode_array")] |
nothing calls this directly
no test coverage detected