mieab_1.m
来自「MieMatlabMaetzler.zip 非常全功能的Mie散射程序 ma」· M 代码 · 共 14 行
M
14 行
function result = Mieab_1(m, x)
% Computation of Mie coefficients a_n(z), b_n(z) for order 1,
% complex refractive index m=m'+im", and size parameter x=k0*a<<1,
% where k0=vacuum wave number, a=sphere radius.
% This is the Rayleigh Approximation
% s. p. 101, 127, 131 in Bohren and Huffman (1983) BEWI:TDD122
% C. M鋞zler, May 2002
z=m*x;
m2=m*m;
k2=(m2-1)/(m2+2);
x2=x*x; x3=x2*x;
a1=-i*2*x3*k2/3;
result=a1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?