|
JMSLTM Numerical Library 6.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.imsl.math.BoundedVariableLeastSquares
public class BoundedVariableLeastSquares
Solve a linear least-squares problem with bounds on the variables.
BoundedVariableLeastSquares
solves the least-squares problem
This algorithm is a generalization of NonNegativeLeastSquares
,
that solves the least-squares problem, Ax = b, subject to all
. NonNegativeLeastSquares is based on the
subroutine NNLS which appeared in Lawson and Hanson (1974). The additional
work on bounded variable least squares was published in a later reprint
(Lawson and Hanson, 1995).
NonNegativeLeastSquares
,
Example,
Serialized FormNested Class Summary | |
---|---|
static class |
BoundedVariableLeastSquares.TooManyIterException
Maximum number of iterations exceeded. |
Constructor Summary | |
---|---|
BoundedVariableLeastSquares(double[][] a,
double[] b,
double[] lowerBound,
double[] upperBound)
Construct a new BoundedVariableLeastSquares instance to solve Ax-b subject to bounds on the variables. |
Method Summary | |
---|---|
double[] |
getDualSolution()
Returns the dual solution vector, w. |
int |
getIterations()
Returns the number of iterations used to find the solution. |
double |
getResidualNorm()
Returns the euclidean norm of the residual vector, . |
double[] |
getSolution()
Returns the solution to the problem. |
void |
setMaxIterations(int maxIterations)
Sets the maximum number of iterations. |
void |
setTolerance(double tolerance)
Sets the internal tolerance used to determine the relative linear dependence of a column vector for a variable moved from its initial value. |
void |
solve()
Find the solution x to the problem for the current constraints. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public BoundedVariableLeastSquares(double[][] a, double[] b, double[] lowerBound, double[] upperBound)
a
- the double
input matrix.b
- a double
array of length a.length
.lowerBound
- a double
array of length n
containing lower bounds. Use
Double.NEGATIVE_INFINITY
for variables
which are not bounded below.upperBound
- a double
array of length n
containing upper bounds. Use
Double.POSITIVE_INFINITY
for variables
which are not bounded above.Method Detail |
---|
public double[] getDualSolution()
double
array containing the dual solution vector,
w.public int getIterations()
int
containing the number of iterations.public double getResidualNorm()
double
containing the euclidean norm of the
residual vector.public double[] getSolution()
double
array containing the solution.public void setMaxIterations(int maxIterations)
maxIterations
- an int
specifying the maximum number of
iterations. The default is three times
a[0].length
.public void setTolerance(double tolerance)
tolerance
- a double
value specifying the tolerance.
The default value is 1.0e-7.public void solve() throws BoundedVariableLeastSquares.TooManyIterException
BoundedVariableLeastSquares.TooManyIterException
|
JMSLTM Numerical Library 6.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |