📄 circeig.m
字号:
function E = circEig(PSF, center)%% E = circEig(PSF, center);%% Compute the eigenvalues of the "Strang" circulant preconditioner,% that is, find the eigenvalues of the circulant matrix that minimizes%% || A - C ||% 1%% where A is a psfMatrix.%% Input: % PSF - array containing a single PSF% center - array containing the indices of the center of the PSF%% Output:% E - array containing the complex eigenvalues of the% circulant preconditioner%% J. Nagy 1/2/02PSF = PSF - min( PSF(:) );PSF = PSF / sum( PSF(:) );E = fftn( circshift(PSF, -(center - 1)) );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -