博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MATLAB产生离散信号
阅读量:6080 次
发布时间:2019-06-20

本文共 1014 字,大约阅读时间需要 3 分钟。

Matlab产生离散信号

常见离散信号

冲击信号

n = -5:5;x = n == 0;% 当n为0时,x的值为1stem(n, x, 'filled');axis([-5 5 0 1.1*max(x)]);%规定坐标轴的范围xlabel('时间(n)');ylabel('幅度(n)');

 

enter description here
冲击信号

 

阶跃信号

n = -2:8;x = n >= 0; % 当n大于等与零时,其值为1stem(n, x, 'filled');axis([-4, 4, 0, 1.1*max(x)]);title('阶跃信号');xlabel('时间(n)');ylabel('幅度(n)');

 

enter description here
阶跃信号

 

实指数序列

n1=-10; n2=10;a1=0.5; a2=2;na1=n1:0;x1 = a1.^na1;na2 = 0:n2;x2 = a2.^na2;subplot(2,2,1);plot(na1,x1);title('实指数原信号(a<1)');subplot(2,2,3);stem(na1,x1,'filled');title('实指数序列(a<1)');subplot(2,2,2);plot(na2,x2);title('实指数原信号(a>1)');subplot(2,2,4);stem(na2,x2,'filled');title('实指数序列(a>1)');

 

enter description here
实数序列

 

复指数序列

 

enter description here
 

 

n = -10:0.2:10;x = exp((-0.2+1j*0.6*pi)*n);subplot(2,2,1), plot(n, real(x));% real画出实部subplot(2,2,3), stem(n, real(x), 'filled');subplot(2,2,2), plot(n, imag(x)); % imag画出虚部subplot(2,2,4), stem(n, imag(x), 'filled');

 

enter description here
复指数信号

 

随机信号

tn=0:0.2:15;N=length(tn);x=rand(1,N);subplot(2,1,1);plot(tn,x);tn=0:0.5:15;N=length(tn);y=rand(1,N);subplot(2,1,2);stem(tn,y);

 

enter description here
随机信号

 

转载于:https://www.cnblogs.com/Vincent-Bryan/p/6566652.html

你可能感兴趣的文章
android下载封装类
查看>>
[node] 用 node-webkit 开发桌面应用
查看>>
Nginx访问控制和虚拟主机
查看>>
report widget not working for external users
查看>>
windows phone 摄像头得到图片是旋转90°
查看>>
Linux--sed使用
查看>>
没有显示器的情况下安装和使用树莓派
查看>>
iOS工程中如何去掉第三方的警告
查看>>
servlet的匹配规则,兼谈/与/*
查看>>
webdynpro tree控件使用
查看>>
权限组件(2):二级菜单
查看>>
Tido c++树状数组知识讲解(转载)
查看>>
noi 8787 数的划分
查看>>
Java多态和动态绑定是如何实现的
查看>>
Thymeleaf 在项目中的应用及前后端交互的一些知识(1)
查看>>
CocoaPods 添加WebP失败解决办法
查看>>
从实际案例聊聊Java应用的GC优化
查看>>
Rebind and Rewind in Execution Plans
查看>>
ARM Linux 3.x的设备树(Device Tree)【转】
查看>>
dotnet core error 0x80070057
查看>>