|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.ObjectJampack.Inv
public class Inv
Inv computes the inverse of a matrix.
Comments: Inv computes the inverse of A by using Solve to solve the system AX = I. This is inefficient, though not inordinately so. Eventually these methods will be replaced.
Constructor Summary | |
---|---|
Inv()
|
Method Summary | |
---|---|
static Zdiagmat |
o(Zdiagmat D)
Computes the inverse of a Zdiagmat. |
static Zltmat |
o(Zltmat L)
Computes the inverse of a Zltmat. |
static Zmat |
o(Zmat A)
Computes the inverse of a square Zmat |
static Zpsdmat |
o(Zpsdmat A)
Computes the inverse of a Zpsdmat. |
static Zutmat |
o(Zutmat U)
Computes the inverse of a Zutmat. |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Inv()
Method Detail |
---|
public static Zltmat o(Zltmat L) throws JampackException
L
- The Zltmat
JampackException
- Thrown if L is not square.public static Zutmat o(Zutmat U) throws JampackException
U
- The Zutmat
JampackException
- Thrown if U is not square.public static Zmat o(Zmat A) throws JampackException
A
- The Zmat
JampackException
- Thrown if A is not square.public static Zpsdmat o(Zpsdmat A) throws JampackException
A
- The Zpsdmat
JampackException
- Thrown if A is not square.public static Zdiagmat o(Zdiagmat D) throws JampackException
D
- The Zdiagmat
JampackException
- Thrown if D singular.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |