信号的产生——gauspuls函数
功能:产生高斯正弦脉冲信号函数gauspuls,其调用格式如下:
(1)yi=gauspuls(t,fc,bw),
(2)yi=gauspuls(t,fc,bw,bwr),
(3)[yi,yq]=gauspuls(……),
(4)[yi,yq,ye]=gauspuls(……),
(5)tc=gauspuls('cutoff',fc,bw,bwr,tpe)
E_2_16_gauspuls.m
高斯正弦脉冲信号函数的实现:
% E_2_16_gauspuls.m
% 高斯正弦脉冲信号函数的实现:
clc
clear
close all
tc = gauspuls('cutoff',50e3,0.6,[],-40);
t = -tc:1e-6:tc;
yi = gauspuls(t,50e3,0.6);
plot(t,yi); grid on;
xlabel('t'); ylabel('h(n)');
title('E_2_16高斯信号图');