n2r.m
来自「用matlab编写的电磁学方面的函数和图像」· M 代码 · 共 18 行
M
18 行
% 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 + =
减小字号Ctrl + -
显示快捷键?