当前位置: 首页 > 文档资料 > NumPy 教程 >

数组创建例程

优质
小牛编辑
130浏览
2023-12-01

它创建指定形状和dtype的未初始化数组。 它使用以下构造函数:

构造器接受下列参数:

下面的代码展示空数组的例子:

  1. import numpy as np
  2. x = np.empty([3,2], dtype = int)
  3. print x

输出如下:

  1. [1818321759 1885959276]
  2. [16779776 156368896]]

返回特定大小,以 0 填充的新数组。

构造器接受下列参数:

示例 1

  1. # 含有 5 个 0 的数组,默认类型为 float
  2. import numpy as np
  3. x = np.zeros(5)
  4. print x

输出如下:

  1. import numpy as np
  2. x = np.zeros((5,), dtype = np.int)
  3. print x

输出如下:

  1. [0 0 0 0 0]

示例 3

  1. # 自定义类型
  2. x = np.zeros((2,2), dtype = [('x', 'i4'), ('y', 'i4')])
  1. [[(0,0)(0,0)]
  2. [(0,0)(0,0)]]

返回特定大小,以 1 填充的新数组。

构造器接受下列参数:

  1. # 含有 5 个 1 的数组,默认类型为 float
  2. import numpy as np
  3. x = np.ones(5) print x

输出如下:

  1. [ 1. 1. 1. 1. 1.]

示例 2

  1. import numpy as np
  2. x = np.ones([2,2], dtype = int)
  3. print x

输出如下:

  1. [[1 1]