📄 n2r.m
字号:
% n2r.m - refractive indices to reflection coefficients of M-layer structure
%
% Usage: r = n2r(n)
%
% n = refractive indices = [na,n(1),...,n(M),nb]
% r = reflection coefficients = [r(1),...,r(M+1)]
%
% notes: there are M layers, M+1 interfaces, and M+2 media
% S. J. Orfanidis - 1999 - www.ece.rutgers.edu/~orfanidi/ewa
function r = n2r(n)
if nargin==0, help n2r; return; end
r = -diff(n) ./ (2*n(1:end-1) + diff(n));
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -