numpy.ones()
Python numpy.ones()函数的作用是:返回一个给定形状和类型的新数组,其中包括ones。
Syntax: numpy.ones(shape, dtype = None, order = 'C')
参数:
shape:整数或整数的序列
order: C_contiguous或F_contiguous
C-连续顺序在内存中(最后一个索引的变化速度最快)
C顺序意味着在数组上操作行升会稍微快一些
FORTRAN-在内存中的连续顺序(第一个索引变化最快)。
F顺序意味着对列的操作会更快。
dtype : [optional, float(byDefault)] 返回阵列的数据类型。
返回值:
具有给定形状、顺序和数据类型的一元数列。
示例1
# Python Program illustrating
# numpy.ones method
import numpy as geek
b = geek.ones(2, dtype = int)
print("Matrix b : \n", b)
a = geek.ones([2, 2], dtype = int)
print("\nMatrix a : \n", a)
c = geek.ones([3, 3])
print("\nMatrix c : \n", c)
输出:
Matrix b :
[1 1]
Matrix a :
[[1 1]
[1 1]]
Matrix c :
[[ 1. 1. 1.]
[ 1. 1. 1.]
[ 1. 1. 1.]]