• 大小: 672B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-05-22
  • 语言: Matlab
  • 标签:

资源简介

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

资源截图

代码片段和文件信息

clear all; 
x=randn(101)>0; 
fl=400;fh=1000;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‘l

评论

共有 条评论

相关资源