public class QueueMatrix
extends org.ddogleg.struct.FastQueue<org.ejml.data.DenseMatrix64F>
FastQueue which will internally declare DenseMatrix64F of a specific shape.| Constructor and Description |
|---|
QueueMatrix(int numRows,
int numCols)
Specifies the matrix shape.
|
QueueMatrix(int numRows,
int numCols,
int initialMaxSize)
Specifies the matrix shape and the number of elements in the internal array initially.
|
| Modifier and Type | Method and Description |
|---|---|
protected org.ejml.data.DenseMatrix64F |
createInstance() |
public QueueMatrix(int numRows,
int numCols,
int initialMaxSize)
numRows - Number of rows in each matrix.numCols - Number of columns in each matrix.initialMaxSize - Initial number of matrices in storage.public QueueMatrix(int numRows,
int numCols)
numRows - Number of rows in each matrix.numCols - Number of columns in each matrix.