• 大小: 892B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-12
  • 语言: Matlab
  • 标签: FSK,matlab  

资源简介

一个很简单的程序,但是编写的很经典,可以一看

资源截图

代码片段和文件信息

clear all; 
x=randn(101)>0; 
fl=400;fh=800;fs=10000; 
ts=1/200;  %200
tt=(0:1/fs:ts); 
t=[tt;tt+ts;tt+2*ts;tt+3*ts;tt+4*ts;tt+5*ts;tt+6*ts;tt+7*ts;tt+8*ts;tt+9*ts]; 
m=length(tt);
y=zeros(10m); 
i=1; 
%FSK modulate
while i<=10 
y(i:)=x(i)*sin(2*pi*fh*t(i:))+~x(i)*sin(2*pi*fl*t(i:)); 
i=i+1; 
end 
t=reshape(t‘length(tt)*101); 
y=reshape(y‘length(tt)*101); 
subplot(221);plot(ty); 
title(‘信号时域‘); 

n=length(

评论

共有 条评论