Enum fftw3::FftError
[-]
[+]
[src]
pub enum FftError {
InsufficientSpace(uint, uint),
FailedPlan,
}Errors that can occur while planning or running a fourier transform.
Variants
InsufficientSpace | The input slice was too long for the the output (elements are the lengths of those respective slices). |
FailedPlan | FFTW returned an error (a null plan) when planning. |