Python+matplotlib实现计算两个信号的交叉谱密度实例


Posted in Python onJanuary 08, 2018

 计算两个信号的交叉谱密度

结果展示:

Python+matplotlib实现计算两个信号的交叉谱密度实例

完整代码:

import numpy as np
import matplotlib.pyplot as plt


fig, (ax1, ax2) = plt.subplots(2, 1)
# make a little extra space between the subplots
fig.subplots_adjust(hspace=0.5)

dt = 0.01
t = np.arange(0, 30, dt)

# Fixing random state for reproducibility
np.random.seed(19680801)


nse1 = np.random.randn(len(t))         # white noise 1
nse2 = np.random.randn(len(t))         # white noise 2
r = np.exp(-t / 0.05)

cnse1 = np.convolve(nse1, r, mode='same') * dt  # colored noise 1
cnse2 = np.convolve(nse2, r, mode='same') * dt  # colored noise 2

# two signals with a coherent part and a random part
s1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1
s2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2

ax1.plot(t, s1, t, s2)
ax1.set_xlim(0, 5)
ax1.set_xlabel('time')
ax1.set_ylabel('s1 and s2')
ax1.grid(True)

cxy, f = ax2.csd(s1, s2, 256, 1. / dt)
ax2.set_ylabel('CSD (db)')
plt.show()

总结

以上就是本文关于Python+matplotlib实现计算两个信号的交叉谱密度实例的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!

Python 相关文章推荐
python高并发异步服务器核心库forkcore使用方法
Nov 26 Python
分享python数据统计的一些小技巧
Jul 21 Python
用python写个自动SSH登录远程服务器的小工具(实例)
Jun 17 Python
在windows下Python打印彩色字体的方法
May 15 Python
python实现傅里叶级数展开的实现
Jul 21 Python
对python读取CT医学图像的实例详解
Jan 24 Python
Python实现定制自动化业务流量报表周报功能【XlsxWriter模块】
Mar 11 Python
十行代码使用Python写一个USB病毒
Jun 21 Python
基于Python+Appium实现京东双十一自动领金币功能
Oct 31 Python
Python filter()及reduce()函数使用方法解析
Sep 05 Python
详解Python中的for循环
Apr 30 Python
python运行脚本文件的三种方法实例
Jun 25 Python
python matplotlib 注释文本箭头简单代码示例
Jan 08 #Python
Python自定义简单图轴简单实例
Jan 08 #Python
[原创]python爬虫(入门教程、视频教程)
Jan 08 #Python
小米5s微信跳一跳小程序python源码
Jan 08 #Python
Python实现判断字符串中包含某个字符的判断函数示例
Jan 08 #Python
Python实现的字典值比较功能示例
Jan 08 #Python
python基础之包的导入和__init__.py的介绍
Jan 08 #Python
You might like
一段php加密解密的代码
2006/10/09 PHP
php将数据库中所有内容生成静态html文档的代码
2010/04/12 PHP
yii操作session实例简介
2014/07/31 PHP
php单元测试phpunit入门实例教程
2017/11/17 PHP
Laravel框架生命周期与原理分析
2018/06/12 PHP
jQuery获取和设置表单元素的方法
2014/02/14 Javascript
Jquery性能优化详解
2014/05/15 Javascript
JavaScript中实现单体模式分享
2015/01/29 Javascript
引用jquery框架后出错的解决方法
2016/08/09 Javascript
js实现窗口全屏示例详解
2019/09/17 Javascript
微信小程序开发之转发分享功能
2019/10/22 Javascript
使用JS监听键盘按下事件(keydown event)
2019/11/07 Javascript
Python中还原JavaScript的escape函数编码后字符串的方法
2014/08/22 Python
Pycharm学习教程(7)虚拟机VM的配置教程
2017/05/04 Python
Python实现将SQLite中的数据直接输出为CVS的方法示例
2017/07/13 Python
python学习必备知识汇总
2017/09/08 Python
Python WXPY实现微信监控报警功能的代码
2017/10/20 Python
Python常见字典内建函数用法示例
2018/05/14 Python
Python2.7实现多进程下开发多线程示例
2019/05/31 Python
PyTorch的深度学习入门之PyTorch安装和配置
2019/06/27 Python
python 数据分析实现长宽格式的转换
2020/05/18 Python
python里glob模块知识点总结
2021/01/05 Python
css sprite简单实例
2016/05/23 HTML / CSS
德国高性价比网上药店:medpex
2017/07/09 全球购物
HolidayLettings英国:预订最好的度假公寓、别墅和自助式住宿
2019/08/27 全球购物
2019年c语言经典面试题目
2016/08/17 面试题
机械设计及其自动化专业推荐信
2013/10/31 职场文书
劳动模范事迹材料
2014/01/19 职场文书
暑假家长评语大全
2014/04/17 职场文书
期末评语大全
2014/05/04 职场文书
教师党员个人自我剖析材料
2014/09/29 职场文书
2015年行政管理人员工作总结
2015/10/15 职场文书
2016中秋节问候语
2015/11/11 职场文书
英文诗歌翻译方法(赏析)
2019/08/16 职场文书
关于mysql中时间日期类型和字符串类型的选择
2021/11/27 MySQL
SQL Server中的逻辑函数介绍
2022/05/25 SQL Server