09 2019 档案

摘要:import pandas as pd x = [53, 61, 49, 66, 78, 47] s = pd.Series(x) print(s.skew()) print(s.kurt()) 阅读全文
posted @ 2019-09-30 09:22 喵小喵~ 阅读(9880) 评论(0) 推荐(2)
摘要: 阅读全文
posted @ 2019-09-28 18:05 喵小喵~ 阅读(194) 评论(0) 推荐(0)
摘要:作者:风翼冰舟链接:https://www.zhihu.com/question/299068775/answer/525874350来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 我感觉CV还好,毕竟是大趋势,要是研究CG试试,简直是坑得吐血,本人研究方向运动捕捉, 阅读全文
posted @ 2019-09-23 12:44 喵小喵~ 阅读(648) 评论(0) 推荐(0)
摘要:import sys import numpy # 一定要有,否则会出现_ufuncs错误 from cx_Freeze import setup, Executable base = None if sys.platform == 'win32': base = 'Win32GUI' options = { 'build_exe': { '... 阅读全文
posted @ 2019-09-22 10:30 喵小喵~ 阅读(413) 评论(0) 推荐(0)
摘要:1 import sys 2 from PyQt5.QtCore import * 3 from PyQt5.QtGui import * 4 from PyQt5.QtWidgets import * 5 class MyWindow(QWidget): 6 def __init__(self,parent=None): 7 super(MyWindow,self).__init__(paren 阅读全文
posted @ 2019-09-21 21:18 喵小喵~ 阅读(192) 评论(0) 推荐(0)
摘要:先安装python环境 和 pycharm 然后: PyCharm环境配置 2.1 添加QtDesigner 2.2 添加PyUIC $FileName$ -o $FileNameWithoutExtension$.py 2.3 添加Pyrcc $FileName$ -o $FileNameWith 阅读全文
posted @ 2019-09-20 11:39 喵小喵~ 阅读(583) 评论(0) 推荐(0)
摘要:基本操作 矩阵乘法 矩阵乘,与Numpy dnarray类似,可以使用np.dot()和np.matmul(),除此之外,由于matrix中重载了“*”,因此“*”也能用于矩阵乘。 点乘,只剩下multiply方法了。 矩阵转置 转置有两种方法: 值得一提的是,matrix中求逆还有一种简便方法(n 阅读全文
posted @ 2019-09-19 09:35 喵小喵~ 阅读(3168) 评论(0) 推荐(0)
摘要:python m pip install 阅读全文
posted @ 2019-09-17 19:55 喵小喵~ 阅读(152) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2019-09-17 11:43 喵小喵~ 阅读(152) 评论(0) 推荐(0)
摘要:1 import numpy as np 2 import matplotlib.pyplot as plt 3 4 x_data = [338,333,328,207,226,25,179,60,208,606] 5 y_data = [640,633,619,393,428,27,193,66,226,1591] 6 7 8 #生成从-200到-100的数,不包括-1... 阅读全文
posted @ 2019-09-12 13:30 喵小喵~ 阅读(347) 评论(0) 推荐(0)