invfft2shft.m
来自「hopfield neural network for binary image」· M 代码 · 共 10 行
M
10 行
% INVFFT2SHFT - takes inverse fft, quadrant shifts and returns real part.%% Function to `wrap up' taking the inverse Fourier transform% quadrant shifting and extraction of the real part into the one operation% Peter Kovesi October 1999function ift = invfft2shft(ft)ift = fftshift(real(ifft2(ft)));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?