ppsf.m
来自「zemax与matlab调用程序」· M 代码 · 共 79 行
M
79 行
function PPSF = PPSF(Lambda, w, F, r, e)
% PPSF(Wavelengths, Wavelength_Weights, Focal_Ratio, Radial_Image_Coordinates, Central_Obscuration_Ratio)
%
% Computes the polychromatic Diffraction Point Spread Function for a number of wavelengths, weights and radial image coordinates.
% The radial image coordinate will be in the same length units as that used for the wavelength.
% The focal ratio is the ratio of the focal length to the lens diameter.
% The central obscuration ratio is the ratio of the diameter of the central obscuration to the total clear diameter.
%
% A matrix is returned with the results corresponding to varying radial image coordinate along the columns,
% and the results corresponding to varying wavelength along the rows.
% MZDDE - The ZEMAX DDE Toolbox for Matlab.
% Copyright (C) 2002-2004 Defencetek, CSIR
% Contact : dgriffith@csir.co.za
%
% This file is part of MZDDE.
%
% MZDDE is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2 of the License, or
% (at your option) any later version.
%
% MZDDE is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with MZDDE (COPYING.html); if not, write to the Free Software
% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
%
% Copyright 2003, Defencetek, CSIR
% $Revision: 1.2 $
% First compute all the monochromatic PSFs
mPSF = PSF(Lambda, F, r, e);
% Now weigh and sum the results down the rows
% First check that the size of Lambda and w is good
els = size(Lambda,1) * size(Lambda,2);
if (els == size(Lambda,2))
Lambda = Lambda';
end
if (els ~= size(Lambda,1))
Lambda = Lambda(:,1);
end
% Similar for the weights
els = size(w,1) * size(w,2);
if (els == size(w,2))
w = w';
end
if (els ~= size(w,1))
w = w(:,1);
end
if size(w,1) < size(Lambda,1)
w = cat(1, w, ones(size(Lambda,1)-size(w,1),1));
end
if size(w,1) > size(Lambda,1)
w = w(1:1:size(Lambda,1));
end
% Create matrix of weights
Weights = repmat(w, 1, size(mPSF,2));
% Weigh and sum over wavelengths
PPSF = sum(Weights .* mPSF, 1);
% Finally the result is normalised
PPSF = PPSF / max(PPSF);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?