| Package | Description |
|---|---|
| org.ejml.alg.block | |
| org.ejml.alg.dense.decomposition.bidiagonal | |
| org.ejml.data | |
| org.ejml.simple |
| Modifier and Type | Method and Description |
|---|---|
static SimpleMatrix |
BlockMatrixOps.convertSimple(BlockMatrix64F A)
Converts the block matrix into a SimpleMatrix.
|
| Modifier and Type | Method and Description |
|---|---|
SimpleMatrix |
BidiagonalDecompositionNaive.getB() |
SimpleMatrix |
BidiagonalDecompositionNaive.getU() |
SimpleMatrix |
BidiagonalDecompositionNaive.getV() |
| Modifier and Type | Method and Description |
|---|---|
SimpleMatrix |
D1Submatrix64F.extract() |
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleEVD<T extends SimpleMatrix>
Wrapper around EigenDecomposition for SimpleMatrix
|
class |
SimpleSVD<T extends SimpleMatrix>
Wrapper around SVD for simple matrix.
|
| Modifier and Type | Method and Description |
|---|---|
protected SimpleMatrix |
SimpleMatrix.createMatrix(int numRows,
int numCols) |
static SimpleMatrix |
SimpleMatrix.diag(double... vals)
Creates a matrix where all but the diagonal elements are zero.
|
static SimpleMatrix |
SimpleMatrix.identity(int width)
Creates a new identity matrix with the specified size.
|
static SimpleMatrix |
SimpleBase.loadBinary(String fileName)
Loads a new matrix from a serialized binary file.
|
static SimpleMatrix |
SimpleBase.loadCSV(String fileName)
Loads a new matrix from a CSV file.
|
SimpleMatrix |
SimpleSVD.nullSpace()
Computes the null space from an SVD.
|
static SimpleMatrix |
SimpleMatrix.random(int numRows,
int numCols,
double minValue,
double maxValue,
Random rand)
Creates a new SimpleMatrix with random elements drawn from a uniform distribution from minValue to maxValue.
|
static SimpleMatrix |
SimpleMatrix.wrap(DenseMatrix64F internalMat)
Creates a new SimpleMatrix with the specified DenseMatrix64F used as its internal matrix.
|
| Constructor and Description |
|---|
SimpleMatrix(SimpleMatrix orig)
Creats a new SimpleMatrix which is identical to the original.
|
Copyright © 2013. All Rights Reserved.