fftn.m
来自「matlab fftn.m 在matlab中开发的 .m源程序」· M 代码 · 共 17 行
M
17 行
function f = fftn(x, siz)
%FFTN N-dimensional discrete Fourier Transform.
% FFTN(X) returns the N-dimensional discrete Fourier transform
% of the N-D array X. If X is a vector, the output will have
% the same orientation.
%
% FFTN(X,SIZ) pads X so that its size vector is SIZ before
% performing the transform. If any element of SIZ is smaller
% than the corresponding dimension of X, then X will be cropped
% in that dimension.
%
% See also FFT, IFFT, FFT2, IFFT2, IFFTN.
% Copyright 1984-2002 The MathWorks, Inc.
% $Revision: 1.13 $ $Date: 2002/06/05 17:06:38 $
% Built-in function.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?