1
摘要: 在信号处理中,有些信号会包含大量的噪声,需要用一些滤波器去噪,本文介绍使用bandpass Butterworth filter进行去噪。 直接使用sciPypython库可以实现噪声滤波 步骤1:导入所需python模块 from scipy.signal import filtfilt from 阅读全文
posted @ 2023-05-18 17:13 Bonne_chance 阅读(708) 评论(0) 推荐(0) 编辑
摘要: ### 时间操作 #### 把当前时间转为特定时间字符串 `time_str = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time()))` 结果输出: > `'2023-05-18 09:43:39'` #### 将时间字符串转 阅读全文
posted @ 2023-05-18 09:46 Bonne_chance 阅读(22) 评论(0) 推荐(0) 编辑
1