資源簡介
基于matlab的mie散射計(jì)算程序,主要針對球體
代碼片段和文件信息
%?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
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件????????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\nla
?????文件???????1411??2004-03-08?21:45??MatlabMie\nla
?????文件???????1042??2004-03-08?21:41??MatlabMie\nla
?????文件???????4376??2004-03-08?21:41??MatlabMie\nla
?????文件????????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
評論
共有 條評論