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 SimpleMatrixSimpleMatrix.createMatrix(int numRows, int numCols, MatrixType type) static SimpleMatrixSimpleMatrix.diag(double... vals) Creates a matrix where all but the diagonal elements are zero.static SimpleMatrixCreates a matrix where all but the diagonal elements are zero.static SimpleMatrixSimpleMatrix.filled(int numRows, int numCols, double a) Creates a new matrix filled with the specified value.static SimpleMatrixSimpleMatrix.identity(int width) Creates a new identity matrix with the specified size.static SimpleMatrixCreates a new identity matrix with the specified size and type.SimpleSVD.nullSpace()Computes the null space from an SVD.static SimpleMatrixSimpleMatrix.ones(int numRows, int numCols) Creates a new matrix filled with ones.static SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixSimpleMatrix.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 SimpleMatrixCreates a new SimpleMatrix with the specified Matrix used as its internal matrix.protected SimpleMatrixSimpleMatrix.wrapMatrix(Matrix m) Methods in org.ejml.simple with parameters of type SimpleMatrixModifier and TypeMethodDescriptionstatic SimpleMatrixSimpleMatrix.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.