• 大小: 0.41M
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-03-28
  • 语言: Matlab
  • 标签: matlab  

资源简介


基于matlab的mie散射计算程序,主要针对球体

资源截图

代码片段和文件信息

% 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\ALegendr.m

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

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

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

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

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

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

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

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

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

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

               635806                    10


评论

共有 条评论