|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.matrix.doubles.operation.Measure
public class Measure
A measure, μ, of a matrix, A, is a map from the DenseMatrix space to the real line.
That is,
μ: A -> R
| Constructor Summary | |
|---|---|
Measure()
|
|
| Method Summary | |
|---|---|
static double |
det(Matrix A)
Compute the determinant of a matrix. |
static double |
Frobenius(Matrix A)
Compute the Frobenius norm, i.e., the sqrt of the sum of squares of all elements of a matrix. |
static double |
max(Matrix A)
Compute the maximal entry in a matrix. |
static double |
min(Matrix A)
Compute the minimal entry in a matrix. |
static int |
nullity(Matrix A)
Deprecated. Not supported yet. |
static int |
rank(Matrix A)
Compute the numerical rank of a matrix. |
static int |
rank(Matrix A,
double epsilon)
Compute the numerical rank of a matrix. |
static double |
tr(Matrix A)
Compute the sum of the diagonal elements, i.e., the trace of a matrix. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Measure()
| Method Detail |
|---|
public static int rank(Matrix A,
double epsilon)
Ignore all singular values less than a threshold.
A - a matrixepsilon - a precision parameter: when a number |x| ≤ ε, it is considered 0
Apublic static int rank(Matrix A)
Igore all singular values less than a threshold.
A - a matrix
A@Deprecated public static int nullity(Matrix A)
A - a matrix
Apublic static double det(Matrix A)
A - a matrix
Apublic static double tr(Matrix A)
A - a matrix
Apublic static double Frobenius(Matrix A)
A - a matrix
Apublic static double max(Matrix A)
A - a matrix
public static double min(Matrix A)
A - a matrix
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||