Код: Выделить всё
N=1;
tau=1;
T=10;
T_pach=N*T;
t=0:0.001:T_pach;
for n=0:1:N-1
a=find(t>=(tau+n*T)&t<=n*T);
u=cos(2*pi*10*t);
u(a)=0;
end
plot(t,u),grid
xlim([0,T_pach])
ylim([-2,2])
Код: Выделить всё
N=1;
tau=1;
T=10;
T_pach=N*T;
t=0:0.001:T_pach;
for n=0:1:N-1
a=find(t>=(tau+n*T)&t<=n*T);
u=cos(2*pi*10*t);
u(a)=0;
end
plot(t,u),grid
xlim([0,T_pach])
ylim([-2,2])