• 大小: 714B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-01
  • 语言: Matlab
  • 标签: matlab实现  

资源简介

低通抽样定理 matlab实现 配书《通信原理基于Matlab的计算机仿真》例题7-1

资源截图

代码片段和文件信息

%低通抽样定理
clear all; close all;

dt = 0.01;
t = 0:dt:10-dt;
xt = 0.1*cos(0.15*pi*t)+1.5*sin(2.5*pi*t)+0.5*cos(4*pi*t);
[fxf] = T2F(txt);

%抽样信号,抽样速率为4Hz
fs = 4;
sdt = 1/fs;
t1  = 0:sdt:10;
%t1  = 0:sdt:10-dt;
st = 0.1*cos(0.15*pi*t1)+1.5*sin(2.5*pi*t1)+0.5*cos(4*pi*t1);
[f1sf] = T2F(t1st);

%恢复原始信号
t2 = -50:dt:50;
gt 

评论

共有 条评论