借助sympy.Matrix.col_del()
方法,我們可以刪除矩陣的列。
用法:sympy.Matrix().col_del()
返回:Return a new matrix.
範例1:
在給定的示例中,我們可以看到sympy.Matrix.col_del()
方法用於刪除矩陣的列並返回新的矩陣。
# Import all the methods from sympy
from sympy import *
# use the col_del() method for matrix
gfg_val = Matrix([[1, 2], [2, 1]]).col_del(1)
print(gfg_val)
輸出:
Matrix([[1], [2]])
範例2:
from sympy import *
# use the col() method for matrix
gfg_val = Matrix([[1, 2], [2, 3], [23, 45]]).col_del(1)
print(gfg_val)
輸出:
Matrix([[2], [3], [45]])
相關用法
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python next()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python sympy.apart()用法及代碼示例
- Python sympy.nC()用法及代碼示例
- Python os.set_blocking()用法及代碼示例
- Python os.getcwd()用法及代碼示例
- Python os.access()用法及代碼示例
- Python dict pop()用法及代碼示例
- Python sympy.Add()用法及代碼示例
- Python sympy.nP()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | sympy.Matrix.col_del() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。