From a7f02c93a2e9ff2f4471d3f5a8bcc9868ff56f77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rgen=20Hock?= Date: Sun, 3 Sep 2023 12:44:38 +0200 Subject: [PATCH] Update docs #6 --- README.md | 1 + rust/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b910322..586505f 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Forward and inverse Constant-Q Sliding DFT (QDFT) according to [[1]](#1) with fo - Built-in parameterizable cosine family window (Hann by default) - Customizable time and frequency domain data type in C++ - Endless single or multiple sample processing at once +- Optional quality control parameter to smoothly reduce low frequency bandwidth and improve the time resolution - Optional analysis latency control parameter - Real-time analysis and synthesis capability diff --git a/rust/src/lib.rs b/rust/src/lib.rs index eac898a..25050cb 100644 --- a/rust/src/lib.rs +++ b/rust/src/lib.rs @@ -189,7 +189,7 @@ impl QDFT /// Returns frequency values in hertz of the individual DFT bins. pub fn frequencies(&self) -> &[f64] { self.frequencies.as_slice() } - /// Returns quality factors of the individual DFT bins. + /// Returns Q-factors (relative frequency resolution) of the individual DFT bins. pub fn qualities(&self) -> &[f64] { self.qualities.as_slice() } /// Returns latency values in seconds of the individual DFT bins.