numpy-1.16.4+mkl-cp36-cp36m-win_amd64.whl NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object sophisticated (broadcasting) functions tools for integrating C/C++ and Fortran code useful linear algebra, Fourier transform, and random number capabilities Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data. Arbitrary data-types can be defined. This allows NumPy to seamlessly and speedily integrate with a wide variety of databases. NumPy is licensed under the BSD license, enabling reuse with few restrictions.
2024-01-16 16:48:48 197.45MB numpy+mkl
1
Matplotlib 用户指南
2024-01-12 23:11:47 4.67MB python numpy matplotlib
1
今天小编就为大家分享一篇Python-numpy实现灰度图像的分块和合并方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
2023-12-30 08:53:28 33KB Python numpy 灰度图像
1
1.标量方向传播 1.1 代码 import torch #定义输入张量x x=torch.Tensor([3]) print(x) #初始化权重参数W,偏移量b、并设置require_grad属性为True,为自动求导 w=torch.randn(1,requires_grad=True) b=torch.randn(1,requires_grad=True) print("w=",w) print("b=",b) #实现前向传播 y=torch.mul(w,x) #等价于w*x print(y) z=torch.add(y,b) print(z)#等价于y+b #查看x,w,b页子节
2023-12-21 14:35:11 548KB
1
numpy-1.16.5+mkl-cp37-cp37m-win_amd64.whl numpy-1.16.5+mkl-cp37-cp37m-win_amd64.whl 官网下载速度太慢
2023-12-12 21:39:08 198.73MB numpy 
1
Python备忘单 这个代表越来越多的Python速查表清单。 发现错别字或有建议吗? 分叉,做出贡献并根据您的口味进行调整! 目前包括: 安装 如果要单独安装软件包,请进入相应的.md文件以获取有关如何安装的说明。 从项目根目录: 通过点: $ pip install -r requirements.txt 通过Anaconda: $ conda install --yes --file requirements.txt 这会将所有软件包安装到您的环境中。 未来的补充: 基本的Python语法 (大概)熊猫 PyBind
2023-11-23 23:09:13 535KB python data-science numpy scikit-learn
1
精致的Python常用库的Cheat Sheet,共7个,含numpy, scipy, pandas, matplotlib等等
2023-11-19 06:02:05 1.89MB Python DataScience Numpy Pandas
1
python/scipy/numpy
2023-11-16 06:02:10 62.74MB python/scipy/numpy
1
当使用python编程遇到矩阵计算时,需要用到numpy和scipy包。下面是具体的安装流程: 1.此包适用于64位系统; 2.首先安装python; 3.然后安装numpy,安装程序会自动找到python安装目录; 4.最后安装scipy,安装程序会自动找到python安装目录; 安装完毕即可使用!!!
2023-11-02 06:04:51 56.69MB python2.7 numpy scipy
1
压缩包中包含matplotlib绘图所需的各种组件。有matplotlib numpy six pysparsing dateutil。要求:python3.4,64位
2023-10-24 13:06:30 30.16MB matplotlib numpy six pysparsing
1