Numpy 模块的学习 numpy中random模块

栏目: Python · 发布时间: 6年前

内容简介:Numpy 模块的学习 numpy中random模块

三个网址推荐:

1 http://blog.csdn.net/yhb315279058/article/details/50226075

2 http://www.jb51.net/article/49397.htm

3  http://www.jb51.net/article/103080.htm

补充:

1 Numpy 数据类型(numpy可以在数据类型的后面加上数字,标识这种类型在内存中占的位数)

bool        用一个比特存储布尔类型

inti          由平台决定其所占位数,一般为int32/64

int8/16/32/64        所占位数为8/16/32/64为的有符号整数

unit8/16/32/64      所占位数为8/16/32/64位的无符号数

float16/32/64(float)      半精度符号数/单精度符号数/双精度符号数

complex64/128(complex)    用32位浮点数表示实部和虚部/用64位表示实部和虚部

2 在Numpy中,多数函数可以指定数据类型的参数,这个参数是可选的,格式为dtype=类型名,如:

1 a=numpy.arrange(5,dtype=int)
2 
3 >>>array([0,1,2,3,4])
4 
5 a=numpy.arrange(5,dtype=complex)
6 
7 ?

3  Nump的数组创建函数(array,arrange,ones,zeros,eye,empty)

empty:根据指定的维数和类型创建一个数组但不填充任何值,数组元素值多是一些未初始化的垃圾值

1 import numpy as np
2 
3 print(np.empty(3))
4 
5 print(np.empty((4,1)))

4  数组转置(可以使用transpose()函数,也可以使用T属性访问转置矩阵)

1 nar.transpose()
2 
3 nar.T

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Chinese Authoritarianism in the Information Age

Chinese Authoritarianism in the Information Age

Routledge / 2018-2-13 / GBP 115.00

This book examines information and public opinion control by the authoritarian state in response to popular access to information and upgraded political communication channels among the citizens in co......一起来看看 《Chinese Authoritarianism in the Information Age》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

在线进制转换器
在线进制转换器

各进制数互转换器

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具