显示我错误使用 + 矩阵维度必须一致,但我找不出来

显示我错误使用 + 矩阵维度必须一致,但我找不出来
clear all
clc
%======================================================================
% Fibre simulation parameters
lamdalD = 1.55e-6; %design wavelength
lamda1 = 0.999*lamdalD;
lamda2 = 1.001*lamdalD;
step = 500;
wal = (lamda1:(lamda2-lamda1)/step:lamda2);
%======================================================================
%For a grating of maximun reflectance R = 0.2
Rmax = 0.2; %required maximum reflectivity
rmax = sqrt(Rmax);
kacL = atanh(rmax);
c = 2.99793e8; %Speed of light
h = 25e-9;
t = 0:1e-3:1;
z = 0:1e-6:3000e-6;
v = 1;%Fringe visibilty
%======================================================================
%Implementation of the transfer matrix method for solution of
%coupled-mode equations
L = 3000e-6; %length of grating in micrometers
M = 100;
dz = L/M;
dzo = - L + 10.69e-3; %Distance between gratings
kac = kacL/L; %"AC" coupling coefficient
kdc = 2*kac/v; %"DC" coupling coefficient
neff = 1+v*cos(cos(t)+2*pi*z/dz); %core index of fibre
for r = 1:step+1
w = lamda(r);
F = [1 0; 0 1];
for s = 1:M
det = 2*pi*neff*(1/w - 1/lamdalD);
gdc = det + kdc;
p1 = sqrt(kac^2 - gdc^2);
p2 = gdc^2/kac^2;
f11 = cosh(p1*dz) - 1i*(gdc/p1)*sinh(p1*dz);
f12 = -1i*(kac/p1)*sinh(p1*dz);
f21 = 1i*(kac/p1)*sinh(p1*dz);
f22 = cosh(p1*dz) + 1i*(gdc/p1)*sinh(p1*dz);
ff = [f11 f12; f21 f22];
F = ff*F;
end
r3(r) = F(2,1)/F(1,1); %amplitude reflection coefficient
R3(r) = (abs(r3(r)))^2; %power reflection coefficient
%of single grating
PHI = 2*pi*neff*dzo/w; %phase difference between gratings
Fp = [exp(-1i*PHI) 0; 0 exp(1i*PHI)];
Ffp = F*Fp*F;
t3(r) = 1/Ffp(1,1); %amplitude transmission coefficient
T3(r) = (abs(t3(r)))^2; %power transmission coefficient of
%Fabry-Perot filter
end
%==================================================================
%Calculate Delay and Dispersion of Fabry-Perot Filter
theta = phase(r3);
dtheta1 = gradient(theta, h);
dtheta2 = gradient(dtheta1, h);
DELAY3 = -((wal.^2)./(2*pi*c)).*dtheta1;
DELAYu3 = DELAY3*1e12; %delay in (ps)
DISPERSION3 = (2*DELAY3./wal) - ((wal.^2)./(2*pi*c)).*dtheta2;
DISPERSIONu3 = DISPERSION3*(1e12/1e9); %dispersion in (ps/nm)
%=====================================================================
%Plots for reflection and transmission spectra for Bragg reflector and
%Fabry-Perot filter respectively
figure (1)
plot(wal*1e9, R3, 'k')
grid
axis([1549 1551.5 0 0.2])
title('Reflection Spectrum of Bragg Reflector')
xlabel('Wavelength (nm)')
ylabel('Power (p.u)')
figure (2)
plot(wal*1e9, T3, 'k')
grid
axis([1549 1551.5 0.4 1])
title('Transmission Spectrum of the Fabry-Perot Filter')
xlabel('Wavelength (nm)')
ylabel('Power (p.u)')
figure (3)
plot(wal*1e9, DELAYu3, 'k')
grid
axis([1545 1550 0.002 0.2])
title('Delay Spectrum of the Fabry-Perot Filter')
xlabel('Wavelength (nm)')
ylabel('Delay (ps)')
figure (4)
plot(wal*1e9, DISPERSIONu3, 'k')
grid
axis([1545 1550 -3 5])
title('Dispersion Spectrum of the Fabry-Perot Filter')
xlabel('Wavelength (nm)')
ylabel('Dispersion (ps)')
%====================================================================

你好,你的matlab知识还是有所欠缺。

neff = 1+v*cos(cos(t)+2*pi*z/dz); %core index of fibre   

中间应为2*pi*z./dz
漏了这个点

你好,请问这个问题你解决了吗,为什么我尝试用这个代码,还是报错了,你也是做光纤方向的吗,我想了解一下你是怎么做的

img


我想复现这个图。但是不清楚应该怎么做