美文网首页
Numpy 创建数组的常用函数

Numpy 创建数组的常用函数

作者: ZhenKuanJiang | 来源:发表于2019-05-05 21:29 被阅读0次
numpy.empty(shape, dtype = float, order = 'C')

用来创建一个指定形状(shape)、数据类型(dtype)且未初始化的数组

shape 数组形状
dtype 数据类型,可选
order 有"C"和"F"两个选项,分别代表,行优先和列优先,在计算机内存中的存储元素的顺序

import numpy as np 
x = np.empty([3,2], dtype = int) 
print (x)
#输出
[[ 6917529027641081856  5764616291768666155]
 [ 6917529027641081859 -5764598754299804209]
 [          4497473538      844429428932120]]

注意:数组元素为随机值,因为它们未初始化

numpy.zeros(shape, dtype = float, order = 'C')

创建指定大小的数组,数组元素以 0 来填充

import numpy as np
x = np.zeros(5)                                               # 默认为浮点数
print(x)
#输出
[0. 0. 0. 0. 0.]

y = np.zeros((5,), dtype = np.int)                           # 设置类型为整数
print(y)
#输出
[0 0 0 0 0]

z = np.zeros((2,2), dtype = [('x', 'i4'), ('y', 'i4')])      # 自定义类型
print(z)
#输出
[[(0, 0) (0, 0)]
 [(0, 0) (0, 0)]]
numpy.ones(shape, dtype = None, order = 'C')

创建指定形状的数组,数组元素以 1 来填充

import numpy as np 
x = np.ones(5)                             # 默认为浮点数
print(x)
 #输出
[1. 1. 1. 1. 1.]

x = np.ones([2,2], dtype = int)            # 自定义类型
print(x)
#输出
[[1 1]
 [1 1]]
numpy.asarray(a, dtype = None, order = None)

从已有的数组创建数组

a 任意形式的输入参数,可以是,列表, 列表的元组, 元组, 元组的元组, 元组的列表,多维数组
dtype 数据类型,可选
order 可选,有"C"和"F"两个选项,分别代表,行优先和列优先,在计算机内存中的存储元素的顺序

#将列表转换为 ndarray:
import numpy as np  
x =  [1,2,3] 
a = np.asarray(x)  
print (a)
#输出
[1  2  3]

#将元组转换为 ndarray:
import numpy as np 
x =  (1,2,3) 
a = np.asarray(x)  
print (a)
#输出
[1  2  3]

#将元组列表转换为 ndarray:
import numpy as np 
x =  [(1,2,3),(4,5)] 
a = np.asarray(x)  
print (a)
#输出
[(1, 2, 3) (4, 5)]
numpy.frombuffer(buffer, dtype = float, count = -1, offset = 0)

用于实现动态数组,接受 buffer 输入参数,以流的形式读入转化成 ndarray 对象

buffer 可以是任意对象,会以流的形式读入。
dtype 返回数组的数据类型,可选
count 读取的数据数量,默认为-1,读取所有数据。
offset 读取的起始位置,默认为0

注意:buffer 是字符串的时候,Python3 默认 str 是 Unicode 类型,所以要转成 bytestring 在原 str 前加上 b

import numpy as np 
s =  b'Hello World' 
a = np.frombuffer(s, dtype =  'S1')  
print (a)
#输出
[b'H' b'e' b'l' b'l' b'o' b' ' b'W' b'o' b'r' b'l' b'd']
numpy.fromiter(iterable, dtype, count=-1)

从可迭代对象中建立 ndarray 对象,返回一维数组

iterable 可迭代对象
dtype 返回数组的数据类型
count 读取的数据数量,默认为-1,读取所有数据

import numpy as np 
list=range(5)                            # 使用 range 函数创建列表对象  
it=iter(list)
x=np.fromiter(it, dtype=float)          # 使用迭代器创建 ndarray 
print(x)
#输出
[0. 1. 2. 3. 4.]
numpy.arange(start, stop, step, dtype)

根据 start 与 stop 指定的范围以及 step 设定的步长,生成一个 ndarray

start 起始值,默认为0
stop 终止值(不包含)
step 步长,默认为1
dtype 返回ndarray的数据类型,如果没有提供,则会使用输入数据的类型

import numpy as np
x = np.arange(10,20,2)  
print (x)
#输出
[10  12  14  16  18]
np.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None)

用于创建一个一维数组,数组是一个等差数列构成的

start 序列的起始值
stop 序列的终止值,如果endpoint为true,该值包含于数列中
num 要生成的等步长的样本数量,默认为50
endpoint 该值为 ture 时,数列中中包含stop值,反之不包含,默认是True。
retstep 如果为 True 时,生成的数组中会显示间距,反之不显示。
dtype ndarray 的数据类型

import numpy as np
a = np.linspace(10, 20,  5, endpoint =  False)  
print(a)
#输出
[10. 12. 14. 16. 18.]

import numpy as np
a =np.linspace(1,10,10,retstep= True) 
print(a)
#输出
(array([ 1.,  2.,  3.,  4.,  5.,  6.,  7.,  8.,  9., 10.]), 1.0)

b =np.linspace(1,10,10).reshape([10,1])      # 拓展例子
print(b)
#输出
[[ 1.]
 [ 2.]
 [ 3.]
 [ 4.]
 [ 5.]
 [ 6.]
 [ 7.]
 [ 8.]
 [ 9.]
 [10.]]
np.logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None)

用于创建一个于等比数列

start 序列的起始值为:base ** start
stop 序列的终止值为:base ** stop。如果endpoint为true,该值包含于数列中
num 要生成的等步长的样本数量,默认为50
endpoint 该值为 ture 时,数列中中包含stop值,反之不包含,默认是True。
base 对数 log 的底数。
dtype ndarray 的数据类型

import numpy as np
a = a = np.logspace(0,9,10,base=2)
print (a)
#输出
[  1.   2.   4.   8.  16.  32.  64. 128. 256. 512.]

相关文章

  • Numpy数组

    内容参考:Numpy库常用函数大全 数组的属性 栗子: 数组的创建 扩展小知识:单位矩阵 栗子: 数组的随机函数 ...

  • python的学习笔记9

    十一、数组的创建 1、通过列表创建数组 2、numpy中定义的原生数组创建函数 (1)numpy.zeros(sh...

  • Numpy常用函数用法大全

    Numpy常用函数用法大全目录 Aarray 创建一个np数组arange 返回指定范围内的数组argmax 返回...

  • Numpy 创建数组的常用函数

    numpy.empty(shape, dtype = float, order = 'C') 用来创建一个指定形状...

  • Numpy 常用函数

    numpy 数据类型 numpy 数组创建函数 numpy.empty(shape,): 创建指定类型, 指定形状...

  • Numpy学习-1

    Numpy学习-1 数组基础 创建数组1 .一维数组的创建 从上看出:使用array()函数创建数组,array的...

  • Python数据分析:Numpy学习笔记

    Numpy学习笔记 ndarray多维数组 创建 数组创建函数 arange ones/ones_like zer...

  • NumPy 特殊数组与通用函数

    NumPy 特殊数组与通用函数 创建通用函数 勾股数 CharArray 字符串操作 创建屏蔽数组 忽略负数以及极...

  • Numpy札记7_改变数组形状

    Numpy中查看数组形状的函数shape(),改变数组的形状常用函数有 ravel:将数组平铺成一维数组 resh...

  • ndarray数组的创建和变换

    (一)ndarray数组的创建方法 从Python中的列表、元组等类型创建ndarray数组 使用NumPy中函数...

网友评论

      本文标题:Numpy 创建数组的常用函数

      本文链接:https://www.haomeiwen.com/subject/jkcsnqtx.html