数字基带信号的码型
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
plot(t,y);grid on;
axis([0,i,m-0.1,M+0.1]);
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1];
snrz(t);
2.srz
function y=srz(x)
t0=200;
t=0:1/t0:length(x);
for i=1:length(x)
if(x(i)==1)
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1;
y(t0/2*(2*i-1)+j)=0;
end
else
for j=1:t0/2
y(t0*(i-1)+j)=0;
end
end
end
y=[y,x(i)];
M=max(y);
m=min(y);
subplot(211)
plot(t,y);grid on;
axis([0,i,m-0.1,M+0.1]);
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1];
srz(t);
3.dnrz
function y=dnrz(x)
t0=300;
t=0:1/t0:length(x);
for i=1:length(x)
if(x(i)==1)
for j=1:t0
y((i-1)*t0+j)=1;
end
else
for j=1:t0
y((i-1)*t0+j)=-1;
end
end
end
y=[y,x(i)];
M=max(y);
m=min(y);
subplot(2,1,1)
plot(t,y);grid on;
axis([0,i,m-0.1,M+0.1]);
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1]; dnrz(t);
4.drz
function y=drz(x)
t0=300;
t=0:1/t0:length(x);
for i=1:length(x)
if(x(i)==1)
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1;
y(t0/2*(2*i-1)+j)=0;
end
else
for j=1:t0/2
y(t0/2*(2*i-2)+j)=-1;
y(t0/2*(2*i-1)+j)=0;
end
end
end
y=[y,x(i)];
M=max(y);
m=min(y);
subplot(211)
plot(t,y);grid on;
axis([0,i,m-0.1,M+0.1]);
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1];
drz(t);
5.machester
function y=machester(x)
t0=300;
t=0:1/t0:length(x);
for i=1:length(x)
if(x(i)==1)
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1;
y(t0/2*(2*i-1)+j)=0;
end
else
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1;
y(t0/2*(2*i-1)+j)=0;
end
end
end
y=[y,x(i)];
M=max(y);
m=min(y);
subplot(211)
plot(t,y);grid on;
axis([0,i,m-0.1,M+0.1]);
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1]; machester(t);
6.dmachester
function y=dmachester(x)
t0=100;
t=0:1/t0:length(x);
i=1;
if(x(i)==1)
for j=1:t0/2
y(t0/2*(2*i-2)+j)=0;
y(t0/2*(2*i-1)+j)=1;
end
else
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1;
y(t0/2*(2*i-1)+j)=0;
end
end
for i=2:length(x)
if(x(i)==1)
for j=1:t0/2
y(t0/2*(2*i-2)+j)=y(t0/2*(2*i-3)+t0/4);
y(t0/2*(2*i-1)+j)=1-y(t0/2*(2*i-2)+j);
end
else
for j=1:t0/2
y(t0/2*(2*i-2)+j)=1-y(t0/2*(2*i-3)+t0/4);
y(t0/2*(2*i-1)+j)=1-y(t0/2*(2*i-2)+j);
end
end
end
y=[y,y(i*t0)];
M=max(y);
m=min(y);
subplot(211)
plot(t,y);
axis([0,i,m-0.1,M+0.1]);
set(gca,'Xtick',[0:1:12],'Ytick',[0,1])
grid on
title('1 0 0 1 1 0 0 0 0 1 0 1');
t=[1 0 0 1 1 0 0 0 0 1 0 1];
dmachester(t);
评
语
及
成
绩
教师 (签署)