Solving an underdetermined scipy.sparse matrix using svd

后端 未结 2 951
生来不讨喜
生来不讨喜 2021-01-21 07:15

Problem

I have a set of equations with variables denoted with lowercase variables and constants with uppercase variables as such

A = a + b  
B = c + d          


        
2条回答
  •  误落风尘
    2021-01-21 07:46

    To build on ewcz's answer, both the nullspace and pseudo-inverse can be calculated using numpy.linalg.svd. See the links below:

    pseudo-inverse

    nullspace

提交回复
热议问题