Uses of Class
org.ejml.simple.SimpleMatrix

Packages that use SimpleMatrix
Package
Description
 
 
  • Uses of SimpleMatrix in org.ejml.equation

    Methods in org.ejml.equation that return SimpleMatrix
    Modifier and Type
    Method
    Description
    Equation.lookupSimple(String token)
     
    Methods in org.ejml.equation with parameters of type SimpleMatrix
    Modifier and Type
    Method
    Description
    void
    Equation.alias(SimpleMatrix variable, String name)
     
  • Uses of SimpleMatrix in org.ejml.simple

    Methods in org.ejml.simple that return SimpleMatrix
    Modifier and Type
    Method
    Description
    protected SimpleMatrix
    SimpleMatrix.createMatrix(int numRows, int numCols, MatrixType type)
     
    SimpleMatrix.diag(double... vals)
    Creates a matrix where all but the diagonal elements are zero.
    SimpleMatrix.diag(Class<?> type, double... vals)
    Creates a matrix where all but the diagonal elements are zero.
    SimpleMatrix.filled(int numRows, int numCols, double a)
    Creates a new matrix filled with the specified value.
    SimpleMatrix.identity(int width)
    Creates a new identity matrix with the specified size.
    SimpleMatrix.identity(int width, Class<?> type)
    Creates a new identity matrix with the specified size and type.
    SimpleSVD.nullSpace()
    Computes the null space from an SVD.
    SimpleMatrix.ones(int numRows, int numCols)
    Creates a new matrix filled with ones.
    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).
    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).
    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).
    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).
    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).
    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).
    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).
    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).
    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).
    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.
    SimpleMatrix.wrap(Matrix internalMat)
    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 SimpleMatrix
    Modifier and Type
    Method
    Description
    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 SimpleMatrix
    Modifier
    Constructor
    Description
     
    Creates a new SimpleMatrix which is identical to the original.