All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----linear_algebra.Triangular
This class contains:
This class was written by a statistician rather than a numerical analyst. When public domain Java numerical analysis routines become available from numerical analysts (e.g., the people who produce LAPACK), then the code produced by the numerical analysts should be used.
Meanwhile, if you have suggestions for improving this code, please contact Steve Verrill at steve@ws10.fpl.fs.fed.us.
This method obtains the solution, y, of the equation Ly = b where L is a known full rank lower triangular n by n matrix, and b is a known vector of length n.
public Triangular()
public void solveLower(double l[][],
double y[],
double b[],
int n) throws NotFullRankException
This method obtains the solution, y, of the equation Ly = b where L is a known full rank lower triangular n by n matrix, and b is a known vector of length n.
public void solveUpper(double u[][],
double x[],
double y[],
int n) throws NotFullRankException
public void invertLower(double l[][],
int n) throws NotFullRankException
public void invertUpper(double u[][],
int n) throws NotFullRankException
All Packages Class Hierarchy This Package Previous Next Index