⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 aliasing.m

📁 经典《信号与系统》教程的matlab例程,对深入理解信号与系统相关概念有很大帮助
💻 M
字号:
% Name: aliasing.m
%
clear,close all,
t=-2:0.01:2;
n=-2:2;
x1=cos(0.6*pi*t);
x2=cos(1.4*pi*t);
x3=cos(2.6*pi*t);
x4=cos(2.6*pi*n*1);
subplot(211)
plot(t,x1,'k'),hold on,
plot(t,x2,'r:'),hold on,
plot(t,x3,'b:'),hold on,
plot(n,x4,'.')
axis([-2,2,-1.2,1.2])
title('The signals x1(t), x2(t) and x3(t)')
xlabel('Time t')

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -