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 real valued diagonal matrix of the specified typestatic SimpleMatrix
SimpleMatrix.filled
(int numRows, int numCols, double a) Returns a filled matrix (numRows x numCols) of the value a.static SimpleMatrix
SimpleMatrix.identity
(int width) Creates a new identity matrix with the specified size.static SimpleMatrix
SimpleSVD.nullSpace()
Computes the null space from an SVD.static SimpleMatrix
SimpleMatrix.ones
(int numRows, int numCols) Returns a matrix of ones.static SimpleMatrix
SimpleMatrix.random
(int numRows, int numCols) Creates a DDRM random matrix with values from 0.0 to 1.0.static SimpleMatrix
SimpleMatrix.random_CDRM
(int numRows, int numCols) Creates a CDRM random matrix with values from 0.0 to 1.0.static SimpleMatrix
SimpleMatrix.random_CDRM
(int numRows, int numCols, float minValue, float maxValue, Random rand) static SimpleMatrix
SimpleMatrix.random_DDRM
(int numRows, int numCols) Creates a DDRM random matrix with values from 0.0 to 1.0.static SimpleMatrix
SimpleMatrix.random_DDRM
(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.random_FDRM
(int numRows, int numCols) Creates a FDRM random matrix with values from 0.0 to 1.0.static SimpleMatrix
SimpleMatrix.random_FDRM
(int numRows, int numCols, float minValue, float maxValue, Random rand) static SimpleMatrix
SimpleMatrix.random_ZDRM
(int numRows, int numCols) Creates a ZDRM random matrix with values from 0.0 to 1.0.static SimpleMatrix
SimpleMatrix.random_ZDRM
(int numRows, int numCols, double minValue, double maxValue, Random rand) 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 DMatrixRMaj 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.