jlimite.m
来自「球形粒子Mie 散射用Matlab编写的Mie theory计算程序。在光子学中」· M 代码 · 共 15 行
M
15 行
% Auteur : Sylvain Lecler (th鑣e 2003-2005)
% Directeur administratif : Patrick Meyrueis
%
% fct limite quaand z tend vers 0 de j_n(x)
%
% Faut-il la garder ?
% utilisable dans transaltion_z.m pour calculer j_n(kd) qd d=0
function [a]=f(x)
if x==0
a=1;
else
a=0;
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?