sympy.Matrix().row_insert()
借助Matrix().row_insert()方法,我们可以在维度为nxm的矩阵中插入一行,其中插入行的维度为1xm。
语法:Matrix().row_insert()
返回:返回一个新的矩阵。
sympy.Matrix().row_insert() 例# 1:
在这个例子中,我们可以使用matrix ().row_insert()方法在矩阵中插入一行。
# Import all the methods from sympy
from sympy import *
# Make a matrix
gfg_mat = Matrix([[1, 2], [2, 1]])
# use the row_insert() method for matrix
new_mat = gfg_mat.row_insert(1, Matrix([[3, 4]]))
print(new_mat)
Output :
Matrix([[1, 2], [3, 4], [2, 1]])
sympy.Matrix().row_insert() 例# 2:
# Import all the methods from sympy
from sympy import *
# Make a matrix
gfg_mat = Matrix([[1, 2], [2, 1]])
# use the row_insert() method for matrix
new_mat = gfg_mat.row_insert(2, Matrix([[13, 24]]))
print(new_mat)
Output :
Matrix([[1, 2], [2, 1], [13, 24]])