Wrapper for midband frequency of standard filter

This commit is contained in:
Anne de Jong 2024-09-30 21:35:57 +02:00
parent 96187bfcf9
commit 016db92eba

View File

@ -567,6 +567,10 @@ impl StandardFilterDescriptor {
Ok(Self::genFilterSetForRange(b, fmin, fmax, append_overall)?) Ok(Self::genFilterSetForRange(b, fmin, fmax, append_overall)?)
} }
#[pyo3(name="fm")]
fn fm_py(&self) -> Option<Flt> {
self.fm()
}
} }
#[cfg(test)] #[cfg(test)]