Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Matlab biult-in 函数“inv”来计算方阵的逆。matlab inv() 是否使用任何重新排序算法(在 inv 内部并且没有用户指定)来计算逆?
提前致谢..
可能正在进行行旋转以最小化舍入,但这只是算法的一部分。
你得到的逆应该是预期的顺序。你问是因为有一个你无法解释的不寻常的功能吗?
我会问你为什么认为你需要逆。更典型的是使用 LU 分解和前后替换来求解方程,而不是计算完整的逆。你如何使用结果?