torch.FFTOptions
export interface FFTOptions {
/** Signal length. If signal is shorter, it is zero-padded. Default: input length */
n?: number;
/** Dimension over which to compute the FFT. Default: -1 */
dim?: number;
/** Normalization mode: 'forward', 'backward', or 'ortho'. Default: 'backward' */
norm?: 'forward' | 'backward' | 'ortho';
}n(number)optional- – Signal length. If signal is shorter, it is zero-padded. Default: input length
dim(number)optional- – Dimension over which to compute the FFT. Default: -1
norm('forward' | 'backward' | 'ortho')optional- – Normalization mode: 'forward', 'backward', or 'ortho'. Default: 'backward'
Options for FFT operations.