public class DenseD2Matrix64F
extends org.ejml.data.ReshapeMatrix64F
implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
double[][] |
data
Where the raw data for the matrix is stored.
|
| Constructor and Description |
|---|
DenseD2Matrix64F(int numRows,
int numCols) |
| Modifier and Type | Method and Description |
|---|---|
<T extends org.ejml.data.Matrix64F> |
copy() |
double |
get(int row,
int col) |
int |
getNumElements() |
void |
print() |
void |
reshape(int numRows,
int numCols,
boolean saveValues) |
void |
set(int row,
int col,
double val) |
double |
unsafe_get(int row,
int col) |
void |
unsafe_set(int row,
int col,
double val) |
public double[][] data
public void reshape(int numRows,
int numCols,
boolean saveValues)
reshape in class org.ejml.data.ReshapeMatrix64Fpublic double get(int row,
int col)
get in interface org.ejml.data.Matrix64Fpublic void set(int row,
int col,
double val)
set in interface org.ejml.data.Matrix64Fpublic double unsafe_get(int row,
int col)
unsafe_get in interface org.ejml.data.Matrix64Fpublic void unsafe_set(int row,
int col,
double val)
unsafe_set in interface org.ejml.data.Matrix64Fpublic int getNumElements()
getNumElements in interface org.ejml.data.Matrix64Fpublic void print()
print in interface org.ejml.data.Matrix64Fpublic <T extends org.ejml.data.Matrix64F> T copy()
copy in interface org.ejml.data.Matrix64F