Package org.ejml.ops
Class MatrixFeatures
java.lang.Object
org.ejml.ops.MatrixFeatures
Determines which features a matrix has that do not rely on inner data type
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
MatrixFeatures
public MatrixFeatures()
-
-
Method Details
-
isVector
Checks to see if the matrix is a vector or not.- Parameters:
mat
- A matrix. Not modified.- Returns:
- True if it is a vector and false if it is not.
-
isSquare
Checks to see if it is a square matrix. A square matrix has the same number of rows and columns.- Parameters:
mat
- A matrix. Not modified.- Returns:
- True if it is a square matrix and false if it is not.
-