computing determinant of a matrix (nxn) recursively

前端 未结 5 1199
心在旅途
心在旅途 2021-01-19 05:26

I\'m about to write some code that computes the determinant of a square matrix (nxn), using the Laplace algorithm (Meaning recursive algorithm) as written Wikipedia\'s Lapla

5条回答
  •  我在风中等你
    2021-01-19 06:03

    use Sarrus' Rule (non recursive method) example on below link is in Javascript, but easily can be written in python https://github.com/apanasara/Faster_nxn_Determinant

提交回复
热议问题