博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gnuradio的Python应用中绘图
阅读量:6349 次
发布时间:2019-06-22

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

import scipy, pylab# Read in the data into two variablesindata = scipy.fromfile(open('input.32fc','r'),dtype=scipy.complex64 , count =10000)outdata = scipy.fromfile ( open ('output.32fc','r') ,dtype=scipy.complex64,count =10000)# Do some data manipulations here# Plot the datafig = pylab.figure ( 1 , figsize = (14 , 8) , facecolor= 'w')sp = fig.add_subplot( 1 , 1 , 1 )sp.plot(indata.real [ 1200:1300] ,'b−o ', linewidth =2)sp.plot(outdata.real [1200:1300],'r−s',linewidth =2)p yl ab . show ( )

转载地址:http://prtla.baihongyu.com/

你可能感兴趣的文章
SKF密码设备研究
查看>>
数据对象映射模式(通过工厂模式和注册树模式)v2
查看>>
4939 欧拉函数[一中数论随堂练]
查看>>
MySQL笔记(一)
查看>>
spring boot 包jar运行
查看>>
18年秋季学习总结
查看>>
Effective前端1:能使用html/css解决的问题就不要使用JS
查看>>
网络攻防 实验一
查看>>
由莫名其妙的错误开始---浅谈jquery的dom节点创建
查看>>
磨刀-CodeWarrior11生成的Makefile解析
查看>>
String StringBuffer StringBuilder对比
查看>>
bootstrap随笔点击增加
查看>>
oracle 中proc和oci操作对缓存不同处理
查看>>
[LeetCode] Spiral Matrix 解题报告
查看>>
60906磁悬浮动力系统应用研究与模型搭建
查看>>
指纹获取 Fingerprint2
查看>>
面试题目3:智能指针
查看>>
取消凭证分解 (取消公司下的多个利润中心)
查看>>
flask ORM: Flask-SQLAlchemy【单表】增删改查
查看>>
vim 常用指令
查看>>