Skip to content

Commit

Permalink
Update docs #6
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Sep 3, 2023
1 parent fa1ea03 commit a7f02c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ impl<T, F> QDFT<T, F>
/// 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.
Expand Down

0 comments on commit a7f02c9

Please sign in to comment.