Package no.uib.cipr.matrix.io
Class MatrixSize
- java.lang.Object
-
- no.uib.cipr.matrix.io.MatrixSize
-
public class MatrixSize extends java.lang.Object
Contains the size of a matrix stored in the Matrix Market exchange format
-
-
Constructor Summary
Constructors Constructor Description MatrixSize(int numRows, int numColumns, int numEntries)
Constructor for MatrixSizeMatrixSize(int numRows, int numColumns, MatrixInfo info)
Constructor for MatrixSize
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isSquare()
Returnstrue
if the matrix is square, elsefalse
int
numColumns()
Returns the number of columns in the matrixint
numEntries()
Returns the number of entries storedint
numRows()
Returns the number of rows in the matrix
-
-
-
Constructor Detail
-
MatrixSize
public MatrixSize(int numRows, int numColumns, MatrixInfo info)
Constructor for MatrixSize- Parameters:
numRows
- Number of rows in the matrixnumColumns
- Number of columns in the matrixinfo
- Info on the matrix
-
MatrixSize
public MatrixSize(int numRows, int numColumns, int numEntries)
Constructor for MatrixSize- Parameters:
numRows
- Number of rows in the matrixnumColumns
- Number of columns in the matrixnumEntries
- Number of entries stored
-
-
Method Detail
-
numRows
public int numRows()
Returns the number of rows in the matrix
-
numColumns
public int numColumns()
Returns the number of columns in the matrix
-
numEntries
public int numEntries()
Returns the number of entries stored
-
isSquare
public boolean isSquare()
Returnstrue
if the matrix is square, elsefalse
-
-