Uses of Class
org.ejml.simple.SimpleMatrix
Packages that use SimpleMatrix
-
Uses of SimpleMatrix in org.ejml.equation
Methods in org.ejml.equation that return SimpleMatrixMethods in org.ejml.equation with parameters of type SimpleMatrix -
Uses of SimpleMatrix in org.ejml.simple
Methods in org.ejml.simple that return SimpleMatrixModifier and TypeMethodDescriptionprotected SimpleMatrix
SimpleMatrix.createMatrix
(int numRows, int numCols, MatrixType type) static SimpleMatrix
SimpleMatrix.diag
(double... vals) Creates a matrix where all but the diagonal elements are zero.static SimpleMatrix
Creates a matrix where all but the diagonal elements are zero.static SimpleMatrix
SimpleMatrix.filled
(int numRows, int numCols, double a) Creates a new matrix filled with the specified value.static SimpleMatrix
SimpleMatrix.identity
(int width) Creates a new identity matrix with the specified size.static SimpleMatrix
Creates a new identity matrix with the specified size and type.SimpleSVD.nullSpace()
Computes the null space from an SVD.static SimpleMatrix
SimpleMatrix.ones
(int numRows, int numCols) Creates a new matrix filled with ones.static SimpleMatrix
SimpleMatrix.random
(int numRows, int numCols) Creates a random matrix with values drawn from the continuous uniform distribution from 0.0 (inclusive) to 1.0 (exclusive).static SimpleMatrix
SimpleMatrix.random_CDRM
(int numRows, int numCols) Creates a random matrix with values drawn from the continuous uniform distribution from 0.0 (inclusive) to 1.0 (exclusive).static SimpleMatrix
SimpleMatrix.random_CDRM
(int numRows, int numCols, float minValue, float maxValue, Random rand) Creates a random matrix with real and complex components drawn from the continuous uniform distribution from minValue (inclusive) to maxValue (exclusive).static SimpleMatrix
SimpleMatrix.random_DDRM
(int numRows, int numCols) Creates a random matrix with values drawn from the continuous uniform distribution from 0.0 (inclusive) to 1.0 (exclusive).static SimpleMatrix
SimpleMatrix.random_DDRM
(int numRows, int numCols, double minValue, double maxValue, Random rand) Creates a random matrix with values drawn from the continuous uniform distribution from minValue (inclusive) to maxValue (exclusive).static SimpleMatrix
SimpleMatrix.random_FDRM
(int numRows, int numCols) Creates a random matrix with values drawn from the continuous uniform distribution from 0.0 (inclusive) to 1.0 (exclusive).static SimpleMatrix
SimpleMatrix.random_FDRM
(int numRows, int numCols, float minValue, float maxValue, Random rand) Creates a random matrix with values drawn from the continuous uniform distribution from minValue (inclusive) to maxValue (exclusive).static SimpleMatrix
SimpleMatrix.random_ZDRM
(int numRows, int numCols) Creates a random matrix with values drawn from the continuous uniform distribution from 0.0 (inclusive) to 1.0 (exclusive).static SimpleMatrix
SimpleMatrix.random_ZDRM
(int numRows, int numCols, double minValue, double maxValue, Random rand) Creates a random matrix with real and complex components drawn from the continuous uniform distribution from minValue (inclusive) to maxValue (exclusive).static SimpleMatrix
SimpleMatrix.randomNormal
(SimpleMatrix covariance, Random random) Creates a new vector which is drawn from a multivariate normal distribution with zero mean and the provided covariance.static SimpleMatrix
Creates a new SimpleMatrix with the specified Matrix used as its internal matrix.protected SimpleMatrix
SimpleMatrix.wrapMatrix
(Matrix m) Methods in org.ejml.simple with parameters of type SimpleMatrixModifier and TypeMethodDescriptionstatic SimpleMatrix
SimpleMatrix.randomNormal
(SimpleMatrix covariance, Random random) Creates a new vector which is drawn from a multivariate normal distribution with zero mean and the provided covariance.Constructors in org.ejml.simple with parameters of type SimpleMatrixModifierConstructorDescriptionSimpleMatrix
(SimpleMatrix orig) Creates a new SimpleMatrix which is identical to the original.