numpy.matlib.empty()是另一個在numpy中執行矩陣運算的函數,它返回給定形狀和類型的新矩陣,而無需初始化條目。
用法: numpy.matlib.empty(shape, dtype=None, order=’C’)
參數:
shape :[int的int或元組]所需的輸出空矩陣的形狀。
dtype :[可選]所需的輸出數據類型。
order:在內存中是以行優先(C-style)還是列主要(Fortran-style)順序存儲多維數據。
Return :給定形狀和類型的新矩陣,
代碼1:
# Python program explaining
# numpy.matlib.empty() function
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
# desired output matrix
out_mat = geek.matlib.empty((2, 3))
print ("Output matrix:", out_mat)
輸出:
Output matrix: [[ 6.93621940e-310 2.43141878e-316 6.93621669e-310] [ 6.93621669e-310 6.93621553e-310 6.93621553e-310]]
代碼2:
# Python program explaining
# numpy.matlib.empty() function
# importing numpy and matrix library
import numpy as geek
import numpy.matlib
# desired output matrix
out_mat = geek.matlib.empty((2, 3), dtype = int, order = 'C')
print ("Output matrix:", out_mat)
輸出:
Output matrix: [[140133380791224 140133380791224 140133356100528] [140133356100336 140133356100592 140133343343704]]
相關用法
- Python numpy matrix eye()用法及代碼示例
- Python numpy matrix ones()用法及代碼示例
- Python numpy matrix randn()用法及代碼示例
- Python numpy matrix identity()用法及代碼示例
- Python numpy matrix zeros()用法及代碼示例
- Python numpy matrix rand()用法及代碼示例
- Python numpy matrix repmat()用法及代碼示例
- Numpy string less()用法及代碼示例
- Numpy string swapcase()用法及代碼示例
- Numpy string isdecimal()用法及代碼示例
- Numpy string isalpha()用法及代碼示例
- Numpy string isdigit()用法及代碼示例
- Numpy string title()用法及代碼示例
- Numpy string upper()用法及代碼示例
- Numpy string isnumeric()用法及代碼示例
注:本文由純淨天空篩選整理自jana_sayantan大神的英文原創作品 numpy matrix operations | empty() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。