opt_r2_of_fnr1_thin.m

来自「Matlab实现光线跟踪算法」· M 代码 · 共 15 行

M
15
字号
function r2 = opt_r2_of_fnr1_thin(f,n,r1)% OPT_R2_OF_FNR1_THIN - second radii of curvature given F, N and R1, thin lens% F - focal width of the lens, N index of refraction of lens% material, R1 - radius of curvature of the front surface (or% -1*radius of curvature of the rear surface)  %% Calling:% r2 = opt_r2_of_fnr1_thin(f,n,r1)%% Formula from Hecht, Optics% Copyright B. Gustavssonr2 = (1./r1-1./(n-1)./f).^-1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?