Trait surgefilter_comb::imports::Note2Pitch [−][src]
pub trait Note2Pitch {
fn n2p<T, const IGNORE_TUNING: bool>(&self, x: T) -> T
where
T: MyFloat;
fn n2pinv<T, const IGNORE_TUNING: bool>(&self, x: T) -> T
where
T: MyFloat;
fn n2p_tuningctr<T>(&self, x: T) -> T
where
T: MyFloat;
fn n2pinv_tuningctr<T>(&self, x: T) -> T
where
T: MyFloat;
fn note_to_omega<T, const IGNORE_TUNING: bool>(&self, x: T) -> (T, T)
where
T: MyFloat;
fn pitch2omega<T>(&self, x: T) -> T
where
T: MyFloat;
}