球球offerrrrrr
球球offerrrrrr
全部文章
Numpy
LeetCode(Python3)(1)
Ubuntu问题(1)
代码/源码(3)
剑指offer(2)
剑指offer(Python3)(3)
未归档(55)
莫烦Matplotlib(1)
归档
标签
去牛客网
登录
/
注册
球球offerrrrrr的博客
全部文章
/ Numpy
(共3篇)
name 'array' is not defined 解决办法
>>> a = array([[1,2,3],[0,0,0],[-1,-2,-3],[2,2,2]]) Traceback (most recent call last): File "<stdin>", line 1, in <modul...
2019-07-22
0
2637
Image to Char 图片转字符 | PIL的简单应用 灰度图
from PIL import Image import numpy as np ### Image to Char 图片转字符 if __name__ == '__main__': image_file = 'son.png' height = 100 # 规定转化出来的‘字符图片...
2019-07-02
0
670
np.frompyfunc()函数的使用 Numpy | 函数向量化
python自定义函数并调用: def func_x(a): y = a + 1 return y print(func_x(1)) # 调用 # 结果: # 2 但是如果a不是一个数,而是一个向量/数组呢?这时候就需要借助numpy中的通用函数np.frompyfunc(func, 1...
2019-07-02
0
2487