jama

Exception in thread “main” java.lang.RuntimeException: Matrix is singular

青春壹個敷衍的年華 提交于 2019-11-28 09:41:41
问题 I'm just trying to create an inverse matrix of a 3x3 matrix following JAMA documentation. But every time it's giving me the following error - Exception in thread "main" java.lang.RuntimeException: Matrix is singular Can anyone help me in this regard? 回答1: If you can calculate the determinant of your matrix, you'll find that it's zero (or close to it). You might be able to tell by inspection. If one row is proportional to another, your matrix is not invertible. 3x3 is easy enough to invert by