❶ 常用基本序列
常用基本序列是:單位脈沖序列、單位階躍序列、矩形序列、實指數序列、正弦型序列。
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)。