计算未成年人的矩阵行列式!
我想用Python计算未成年人的矩阵行列式,也许使用scipy或其他一些包。 有什么建议吗?
i want to caluculate Matrix determinants of minors in Python, maybe using scipy or some other package.
any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Numpy/SciPy 将完成这一切。
linalg.det()
。
Numpy/SciPy will do all this.
linalg.det()
.要创建次要矩阵,您可以使用
该函数输出
To create the minor matrix you could use the function
With this output
要创建矩阵的主次要行列式并对每个行列式进行微积分,您需要执行以下操作:
To create the principal minor determinants of a matrix and make the calculus for each one determinant, you would want to do this: