?? modified_bessel_function.m
字號(hào):
% I0.m - modified Bessel function of 1st kind and 0th order.%% S = I0(x)%% defined only for scalar x >= 0% based on I0.cfunction S = I0(x)eps = 10^(-9);n = 1; S = 1; D = 1;while D > (eps * S), T = x / (2*n); n = n+1; D = D * T^2; S = S + D;end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -