|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jmatrices.dbl.measure.MatrixProperty
MatrixProperty
Given a matrix M -yields-> value ,where value is boolean (true or false).
All operations on a matrix fitting this pattern can be found here!
Author: purangp
Date: 08.03.2004 Time: 23:15:14
Nested Class Summary | |
class |
MatrixProperty.MatrixBandwidth
todo implement |
Method Summary | |
static boolean |
isColumnVector(Matrix m)
Determines whether or not a matrix is a Column Vector |
static boolean |
isDefinitePositive(Matrix m)
todo implement |
static boolean |
isDiagonal(Matrix m)
Determines whether or not a square matrix is a Diagonal matrix |
static boolean |
isIdempotent(Matrix m)
Determines whether or not a matrix is Idempotent |
static boolean |
isIdentity(Matrix m)
Determines whether or not a diagonal matrix is an Identity matrix |
static boolean |
isLowerTriangular(Matrix m)
Determines whether or not a matrix is lower triangular in form |
static boolean |
isMagicSquare(Matrix m)
todo implement |
static boolean |
isRowVector(Matrix m)
Determines whether or not a matrix is a Row Vector |
static boolean |
isScalar(Matrix m)
Determines whether or not a square matrix is a Scalar matrix scalar matrix - a diagonal matrix in which all of the diagonal elements are areEqual //todo find a better way? |
static boolean |
isSemiDefinitePositive(Matrix m)
todo implement |
static boolean |
isSingular(Matrix m)
Determines whether or not a square matrix is Singular i.e has no inverse. |
static boolean |
isSkewSymmetric(Matrix m)
Determines whether or not a matrix is SkewSymmetric |
static boolean |
isSquare(Matrix m)
Determines whether or not a matrix is a square matrix. |
static boolean |
isSymetricPositiveDefinite(Matrix m)
|
static boolean |
isSymmetric(Matrix m)
Determines whether or not a matrix is Symmetric |
static boolean |
isUnit(Matrix m)
Determines whether or not a diagonal matrix is an Unit matrix or an Identity matrix |
static boolean |
isUpperTriangular(Matrix m)
Determines whether or not a matrix is upper triangular in form |
static boolean |
isVector(Matrix m)
Determines whether or not a matrix is a Row or a Column Vector |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public static boolean isColumnVector(Matrix m)
m
-
public static boolean isRowVector(Matrix m)
m
-
public static boolean isVector(Matrix m)
m
-
public static boolean isSquare(Matrix m)
m
-
public static boolean isSymmetric(Matrix m)
m
-
public static boolean isSkewSymmetric(Matrix m)
m
-
public static boolean isIdempotent(Matrix m)
m
-
public static boolean isMagicSquare(Matrix m)
m
-
public static boolean isSingular(Matrix m)
m
- Matrix
public static boolean isDiagonal(Matrix m)
m
- Matrix
isScalar(org.jmatrices.dbl.Matrix)
public static boolean isIdentity(Matrix m)
m
- Matrix
public static boolean isUnit(Matrix m)
m
- Matrix
public static boolean isUpperTriangular(Matrix m)
m
-
public static boolean isLowerTriangular(Matrix m)
m
-
public static boolean isScalar(Matrix m)
m
- Matrix
isDiagonal(org.jmatrices.dbl.Matrix)
public static boolean isSymetricPositiveDefinite(Matrix m)
public static boolean isDefinitePositive(Matrix m)
m
-
public static boolean isSemiDefinitePositive(Matrix m)
m
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |