Python小实验:查看平台信息/处理谐波信号(面向对象)

2024-09-01 10:38

本文主要是介绍Python小实验:查看平台信息/处理谐波信号(面向对象),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.Python查看硬件信息

Python属于上层语言,很少用于直接操作底层硬件,但是并不代表不可以可硬件搭配实现嵌入式功能。比如Python语言在FPGA上实现定点平方根运算,取代传统的Verilog和VHDL语言进行硬件设计。以下用python语言查看当前系统和配置信息。

import platform
def checkPlatformInfo():uname=platform.uname()print("uname=",uname)arch=platform.architecture()print("arch=",arch)machine=platform.machine()print("machine=",machine)node=platform.node()print("node=",node)platformInfo=platform.platform()print("platformInfo=",platformInfo)processor=platform.processor()print("processor=",processor)system=platform.system()print("system=",system)version=platform.version()print("version=",version)if __name__=="__main__":checkPlatformInfo();
运行效果:


2.Python处理谐波信号和信号变换

Python可用于处理数字信号方面的应用,可生成任意所需的波形函数。采用面向对象的方法编写一个wave类。

在wave.py中定义wave类:

import sys
from tkinter import *
from math import *
#wave类
class wave:#初始化类def __init__(self,points=400,formula=None):self.data=[0.0]*pointsself.points=pointsif formula:for p in range(points):x=p*pi*2/pointsself.data[p]=eval(formula)#与其它波相加def __add__(self,other):target=wave(points=self.points)for i in range(self.points):target.data[i]=self.data[i]+other.data[i]return target#与其它波相乘def __mul__(self,other):target=wave(points=self.points)if type(other) == type(5) or type(other)==type(5.0):for i in range(self.points):target.data[i]=self.data[i]*otherelse:for i in range(self.points):target.data[i]=self.data[i]*other.data[i]return target#与其它波相减def __sub__(self,other):target=wave(points=self.points)for i in range(self.points):target.data[i]=self.data[i]-other.data[i]return targetdef integral(self):ans=0.0for pt in self.data:ans=ans+ptreturn ans*2*pi/self.pointsdef plot(self,title="??",pixHeight=None,maxY=None,others=[]):if not pixHeight:pixHeight=self.points*2/3pixWidth=self.pointsif not maxY:maxY=max(max(self.data),-min(self.data))offset=pixHeight/2scale=offset/maxYwin=Tk()win.title(title)canvas=Canvas(win,width=pixWidth,height=pixHeight)#画0值线canvas.create_line(0,offset,pixWidth,offset)canvas.pack()self.plotOne(canvas,pixWidth,scale,offset)for i in range(len(others)):others[i].plotOne(canvas,pixWidth,scale,offset)if sys.platform=="win32":win.mainloop()def plotOne(self,canvas,pixWidth,scale,offset):for x in range(pixWidth):y=offset-self.data[x]*scaleif x:canvas.create_line(x-1,yprev,x,y)yprev=ydef fft(self):work=self*1for harm in range(1,10):formula="-sin(%d*x)"%harmarea=(wave(formula=formula)*work).integral()amplitude=area/-piif amplitude>.000001:print("Harmonic=",harm,"Amplitude=%.04f"%amplitude)takeAway=wave(formula="sin(%d*x)*%f"%(harm,amplitude))work=work-takeAwaydef test():p1=wave(formula="sin(x)/1")p2=wave(formula="sin(3*x)/3")p3=wave(formula="sin(5*x)/5")mys=p1+p2+p3mys.fft()if __name__=="__main__":test();
测试1:

import wave
a=wave.wave(formula="sin(x)")
b=wave.wave(formula=".5*sin(2*x)")
a.plot(maxY=1.2,pixHeight=200,title="Sin(x) and .5*sin(2*x)",others=[b])

测试用例1运行效果:



测试2:

import wave
a=wave.wave(formula="sin(x)")
b=wave.wave(formula=".5*sin(2*x)")
c=a+b
c.plot(maxY=1.5,pixHeight=200,title="Sin(x)+.5*sin(2*x)")

测试用例2运行效果:


测试3:

import wave
a=wave.wave(formula="sin(x)")
b=wave.wave(formula=".5*sin(2*x)")
c=a*b
c.plot(maxY=1.5,pixHeight=200,title="Sin(x)*.5*sin(2*x)")

测试用例3运行效果:


这篇关于Python小实验:查看平台信息/处理谐波信号(面向对象)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1126705

相关文章

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

Java调用Python代码的几种方法小结

《Java调用Python代码的几种方法小结》Python语言有丰富的系统管理、数据处理、统计类软件包,因此从java应用中调用Python代码的需求很常见、实用,本文介绍几种方法从java调用Pyt... 目录引言Java core使用ProcessBuilder使用Java脚本引擎总结引言python

SpringBoot操作spark处理hdfs文件的操作方法

《SpringBoot操作spark处理hdfs文件的操作方法》本文介绍了如何使用SpringBoot操作Spark处理HDFS文件,包括导入依赖、配置Spark信息、编写Controller和Ser... 目录SpringBoot操作spark处理hdfs文件1、导入依赖2、配置spark信息3、cont

python 字典d[k]中key不存在的解决方案

《python字典d[k]中key不存在的解决方案》本文主要介绍了在Python中处理字典键不存在时获取默认值的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录defaultdict:处理找不到的键的一个选择特殊方法__missing__有时候为了方便起见,

使用Python绘制可爱的招财猫

《使用Python绘制可爱的招财猫》招财猫,也被称为“幸运猫”,是一种象征财富和好运的吉祥物,经常出现在亚洲文化的商店、餐厅和家庭中,今天,我将带你用Python和matplotlib库从零开始绘制一... 目录1. 为什么选择用 python 绘制?2. 绘图的基本概念3. 实现代码解析3.1 设置绘图画

Python pyinstaller实现图形化打包工具

《Pythonpyinstaller实现图形化打包工具》:本文主要介绍一个使用PythonPYQT5制作的关于pyinstaller打包工具,代替传统的cmd黑窗口模式打包页面,实现更快捷方便的... 目录1.简介2.运行效果3.相关源码1.简介一个使用python PYQT5制作的关于pyinstall

使用Python实现大文件切片上传及断点续传的方法

《使用Python实现大文件切片上传及断点续传的方法》本文介绍了使用Python实现大文件切片上传及断点续传的方法,包括功能模块划分(获取上传文件接口状态、临时文件夹状态信息、切片上传、切片合并)、整... 目录概要整体架构流程技术细节获取上传文件状态接口获取临时文件夹状态信息接口切片上传功能文件合并功能小