借助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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。