public class Inv extends Object
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 and Description |
---|
Inv() |
Modifier and Type | Method and Description |
---|---|
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.
|
public static Zltmat o(Zltmat L) throws JampackException
L
- The ZltmatJampackException
- Thrown if L is not square.public static Zutmat o(Zutmat U) throws JampackException
U
- The ZutmatJampackException
- Thrown if U is not square.public static Zmat o(Zmat A) throws JampackException
A
- The ZmatJampackException
- Thrown if A is not square.public static Zpsdmat o(Zpsdmat A) throws JampackException
A
- The ZpsdmatJampackException
- Thrown if A is not square.public static Zdiagmat o(Zdiagmat D) throws JampackException
D
- The ZdiagmatJampackException
- Thrown if D singular.Jas4pp 1.5 © Java Analysis Studio for Particle Physics