Package | Description |
---|---|
gov.sandia.cognition.math.matrix.mtj |
Provides a linear algebra package implementation wrapper using the Matrix
Toolkits for Java (MTJ) library.
|
Modifier and Type | Class and Description |
---|---|
class |
Vector1
Implements a one-dimensional MTJ
DenseVector . |
class |
Vector2
Implements a two-dimensional MTJ
DenseVector . |
class |
Vector3
Implements a three-dimensional
DenseVector . |
Modifier and Type | Method and Description |
---|---|
DenseVector |
DenseMatrix.convertToVector() |
DenseVector |
DiagonalMatrixMTJ.convertToVector() |
DenseVector |
DenseVectorFactoryMTJ.copyArray(double[] values)
Creates a DenseVector based on the given array values.
|
DenseVector |
DenseVectorFactoryMTJ.copyVector(Vector m) |
DenseVector |
DenseVectorFactoryMTJ.createVector(int dim) |
DenseVector |
DenseVectorFactoryMTJ.createVector(int dimensionality,
double initialValue) |
DenseVector |
DenseVectorFactoryMTJ.createVectorCapacity(int dimensionality,
int initialCapacity) |
DenseVector |
DenseVectorFactoryMTJ.createWrapper(no.uib.cipr.matrix.DenseVector internalVector)
Creates a new wrapper for a dense MTJ vector.
|
DenseVector |
DenseMatrix.getColumn(int columnIndex) |
DenseVector |
DenseMatrix.getRow(int rowIndex) |
DenseVector |
DenseVector.stack(Vector other) |
DenseVector |
DenseVector.subVector(int minIndex,
int maxIndex)
Gets a subvector of "this", specified by the inclusive indices
|
DenseVector |
DenseMatrix.times(AbstractMTJVector vector) |
Modifier and Type | Method and Description |
---|---|
void |
DenseMatrix.convertFromVector(DenseVector parameters)
Incorporates the parameters in the given vector back into the object.
|
protected void |
DenseMatrix.solveInto(DenseVector b,
DenseVector x)
Solve for "x" in the equation: this*x = b
|
Constructor and Description |
---|
DenseVector(DenseVector vector)
Creates a new instance of DenseVector
|