Sympy - Matrix row_insert and col_insert are wrong at position -1

前端 未结 0 1558
伪装坚强ぢ
伪装坚强ぢ 2021-01-20 22:48

Code:

from sympy import Matrix

Matrix([[1, 1], [1, 1]]).row_insert(-1, Matrix([[2,2]]))

Expected result:

Matrix([
[1, 1],
[1, 1],         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题