pub struct CfftI16 {
pub n_fft: usize,
pub ifft_flag: bool,
pub bit_reverse_flag: bool,
pub twiddle: &'static [u16],
pub bit_rev_table: &'static [u16],
}Expand description
Input and Output formats for CFFT Q15
| CFFT Size | Input Format | Output Format | Number of bits to upscale |
|---|---|---|---|
| 16 | 1.15 | 5.11 | 4 |
| 64 | 1.15 | 7.9 | 6 |
| 256 | 1.15 | 9.7 | 8 |
| 1024 | 1.15 | 11.5 | 10 |
Input and Output formats for CIFFT Q15
| CIFFT Size | Input Format | Output Format | Number of bits to upscale |
|---|---|---|---|
| 16 | 1.15 | 5.11 | 0 |
| 64 | 1.15 | 7.9 | 0 |
| 256 | 1.15 | 9.7 | 0 |
| 1024 | 1.15 | 11.5 | 0 |
Fields§
§n_fft: usize§ifft_flag: bool§bit_reverse_flag: bool§twiddle: &'static [u16]§bit_rev_table: &'static [u16]Implementations§
Auto Trait Implementations§
impl Freeze for CfftI16
impl RefUnwindSafe for CfftI16
impl Send for CfftI16
impl Sync for CfftI16
impl Unpin for CfftI16
impl UnsafeUnpin for CfftI16
impl UnwindSafe for CfftI16
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more