public class D1Submatrix64F
extends java.lang.Object
Describes a rectangular submatrix inside of a D1Matrix64F.
Rows are row0 <= i < row1 and Columns are col0 <= j < col1
| Modifier and Type | Field and Description |
|---|---|
int |
col0 |
int |
col1 |
D1Matrix64F |
original |
int |
row0 |
int |
row1 |
| Constructor and Description |
|---|
D1Submatrix64F() |
D1Submatrix64F(D1Matrix64F original) |
D1Submatrix64F(D1Matrix64F original,
int row0,
int row1,
int col0,
int col1) |
| Modifier and Type | Method and Description |
|---|---|
DenseMatrix64F |
extract() |
double |
get(int row,
int col) |
int |
getCols() |
int |
getRows() |
void |
print() |
void |
set(D1Matrix64F original) |
void |
set(D1Matrix64F original,
int row0,
int row1,
int col0,
int col1) |
void |
set(int row,
int col,
double value) |
public D1Matrix64F original
public int row0
public int col0
public int row1
public int col1
public D1Submatrix64F()
public D1Submatrix64F(D1Matrix64F original)
public D1Submatrix64F(D1Matrix64F original, int row0, int row1, int col0, int col1)
public void set(D1Matrix64F original, int row0, int row1, int col0, int col1)
public void set(D1Matrix64F original)
public int getRows()
public int getCols()
public double get(int row,
int col)
public void set(int row,
int col,
double value)
public DenseMatrix64F extract()
public void print()