❶ 常用基本序列
常用基本序列是:单位脉冲序列、单位阶跃序列、矩形序列、实指数序列、正弦型序列。
1、单位脉冲序列:
单位脉冲序列,也叫单位采样序列或单位冲击序列,在0的位置为1,其他位置均为0。
subplot(2,2,1);stem(n,xn1);title(“0<a<1”);subplot(2,2,2)stem(n,xn2);title(“a>1”);subplot(2,2,3)stem(n,xn3);title(“-1<a<0”);subplot(2,2,4)stem(n,xn4);title(“a<-1”)。
5、正弦型序列:
clc;close all;clear;n=0:1/20:1;y=sin(2*pi*n);stem(n,y)。