资源简介

完整的描述mie散射的matlab源程序,附有技术文档。

资源截图

代码片段和文件信息

% ALegendr	the angular dependent Associated Legendre Polynomials
% [pt]=ALegendr(ang nmax)
% produces matrices p and t with rows n=1 to n=nmax
% for pi and tau functions rescpectively.

function [pt] = ALegendr(ang nmax)


% G. Chliveros and MA Rodrigues (2002) CVPRAI Group Sheffield Hallam University
% http://www.shu.ac.uk/scis/artificial_intelligence

p(1:) = ones(1size(ang2));
t(1:) = cos(ang);
p(2:) = 3*cos(ang);
t(2:) = 2*cos(ang).*p(2:)-3;
for n=3:nmax
p(n:) = ((2*n-1)*cos(ang).*p(n-1:) - n*p(n-2:))/(n-1);
t(n:) = n*cos(ang).*p(n:) - (n+1)*p(n-1:);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        608  2004-03-08 21:46  MatlabMie\MatlabMie\ALegendr.m

     文件       1191  2004-03-08 21:41  MatlabMie\MatlabMie\DegreeOfPolarisation.m

     文件       1918  2004-03-08 21:40  MatlabMie\MatlabMie\nlayerAmp.m

     文件       1411  2004-03-08 21:45  MatlabMie\MatlabMie\nlayerEfficiencies.m

     文件       1042  2004-03-08 21:41  MatlabMie\MatlabMie\nlayerIntensity.m

     文件       4376  2004-03-08 21:41  MatlabMie\MatlabMie\nlayerScaCoeff.m

     文件        574  2004-03-08 21:46  MatlabMie\MatlabMie\RB1.m

     文件        494  2004-03-08 21:46  MatlabMie\MatlabMie\RB2.m

     文件     624192  2008-03-24 11:36  MatlabMie\MERI-04-01.pdf

     目录          0  2008-08-31 21:20  MatlabMie\MatlabMie

     目录          0  2012-04-01 11:21  MatlabMie

----------- ---------  ---------- -----  ----

               635806                    11


评论

共有 条评论