public class LongDenseMatrix extends Object
Constructor and Description |
---|
LongDenseMatrix(int size)
Create a new matrix with the same number of rows and columns.
|
LongDenseMatrix(int numRows,
int numColumns)
Create a new matrix with the given number of rows and columns.
|
Modifier and Type | Method and Description |
---|---|
long |
get(int i,
int j)
Get a specific entry of the matrix.
|
int |
getNumColumns()
Get the number of the columns in the matrix.
|
int |
getNumRows()
Get the number of rows in the matrix.
|
void |
initialize()
Create a empty matrix with all values set to 0.0
|
void |
set(int i,
int j,
long v)
Set a specific entry of the matrix.
|
public LongDenseMatrix(int size)
size
- the number of rows and columnspublic LongDenseMatrix(int numRows, int numColumns)
numRows
- the number of rowsnumColumns
- the number of columnspublic void initialize()
public int getNumRows()
public int getNumColumns()
public long get(int i, int j)
i
- the rowj
- the columnpublic void set(int i, int j, long v)
i
- the rowj
- the columnv
- the value of the entryCopyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.