当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy matrix ones()用法及代码示例


numpy.matlib.ones()是另一个用于在numpy中进行矩阵运算的函数。它返回给定形状和类型的矩阵,并填充为1。

用法: numpy.matlib.ones(shape, dtype=None, order=’C’)

参数:
shape :[int,int]输出矩阵中的行数和列数。如果shape的长度为1,即(N,),或者是标量N,则out变为形状为(1,N)的单行矩阵。
dtype :[可选]所需的输出数据类型。
order:在内存中是以行优先(C-style)还是列主要(Fortran-style)顺序存储多维数据。


Return :给定形状,dtype和顺序的矩阵。

代码1:

# Python program explaining 
# numpy.matlib.ones() function 
  
# importing matrix library from numpy 
import numpy as geek 
import numpy.matlib 
  
# desired 3 x 4 output matrix  
out_mat = geek.matlib.ones((3, 4))  
print ("Output matrix:", out_mat) 
输出:
Output matrix: Output matrix: [[ 1.  1.  1.  1.]
 [ 1.  1.  1.  1.]
 [ 1.  1.  1.  1.]]

代码2:

# Python program explaining 
# numpy.matlib.ones() function 
  
# importing numpy and matrix library 
import numpy as geek 
import numpy.matlib 
  
# desired 1 x 5 output matrix  
out_mat = geek.matlib.ones(shape = 5, dtype = int)  
print ("Output matrix:", out_mat) 
输出:
Output matrix: [[1 1 1 1 1]]


相关用法


注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 numpy matrix operations | ones() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。