上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 53 下一页
该文被密码保护。 阅读全文
posted @ 2020-03-01 21:48 sgggr 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-03-01 21:34 sgggr 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 将pip源更换到国内镜像用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。其中,比较常用的国内镜像包括:(1)阿里云 http://mirrors.aliyun.co 阅读全文
posted @ 2020-02-28 23:57 sgggr 阅读(858) 评论(0) 推荐(0) 编辑
摘要: 一.小波去噪的原理 信号产生的小波系数含有信号的重要信息,将信号经小波分解后小波系数较大,噪声的小波系数较小,并且噪声的小波系数要小于信号的小波系数,通过选取一个合适的阀值,大于阀值的小波系数被认为是有信号产生的,应予以保留,小于阀值的则认为是噪声产生的,置为零从而达到去噪的目的。小波阀值去噪的基本 阅读全文
posted @ 2020-02-28 23:51 sgggr 阅读(11720) 评论(1) 推荐(0) 编辑
摘要: [开发技巧]·AttributeError: module 'pywt' has no attribute 'wavedec'解决方法1.卸载 pywtpip uninstall pywt2.安装 PyWaveletspip install PyWaveletshope this helps———— 阅读全文
posted @ 2020-02-28 16:45 sgggr 阅读(1213) 评论(0) 推荐(0) 编辑
摘要: 1.https://blog.csdn.net/weixin_42575020/article/details/82764114 2.https://www.jianshu.com/p/2b38f07375f1 阅读全文
posted @ 2020-02-28 13:45 sgggr 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 问题1: ERROR: Could not find a version that satisfies the requirement xlwt (from vers ions: none)ERROR: No matching distribution found for xlwt 原因:网络问题或 阅读全文
posted @ 2020-02-28 09:11 sgggr 阅读(3231) 评论(0) 推荐(0) 编辑
摘要: 出现UnboundLocalError: local variable ‘a’ referenced before assignment异常的情况与解决方法字面意思:局部变量赋值前被引用原因:局部变量与全局变量同名例: a = 1 def func(): a += 1 print(a) func() 阅读全文
posted @ 2020-02-28 08:14 sgggr 阅读(3642) 评论(0) 推荐(1) 编辑
摘要: 多项式拟合的简单代码: import matplotlib.pyplot as plt import numpy as np x=[1,2,3,4,5,6,7,8] y=[1,4,9,13,30,25,49,70] a=np.polyfit(x,y,2) #用2次多项式拟合x,y数组 b=np.po 阅读全文
posted @ 2020-02-27 21:57 sgggr 阅读(1659) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/jiawen010/p/10314542.html 通过pycharm创建Django项目是出现如下错误 AttributeError: module 'pip' has no attribute 'main' 环境信息:pycharm2017.3 阅读全文
posted @ 2020-02-27 21:31 sgggr 阅读(254) 评论(0) 推荐(0) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 53 下一页