Class VariableMatrix

java.lang.Object
org.ejml.equation.Variable
org.ejml.equation.VariableMatrix

public class VariableMatrix
extends Variable
Storage for matrix type variables.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    org.ejml.data.DMatrixRMaj matrix  
    boolean temp
    If true then the matrix is dynamically resized to match the output of a function

    Fields inherited from class org.ejml.equation.Variable

    type
  • Constructor Summary

    Constructors 
    Constructor Description
    VariableMatrix​(org.ejml.data.DMatrixRMaj matrix)
    Initializes the matrix variable.
  • Method Summary

    Modifier and Type Method Description
    static VariableMatrix createTemp()  
    boolean isTemp()  
    void setTemp​(boolean temp)  

    Methods inherited from class org.ejml.equation.Variable

    getType, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • matrix

      public org.ejml.data.DMatrixRMaj matrix
    • temp

      public boolean temp
      If true then the matrix is dynamically resized to match the output of a function
  • Constructor Details

    • VariableMatrix

      public VariableMatrix​(org.ejml.data.DMatrixRMaj matrix)
      Initializes the matrix variable. If null then the variable will be a reference one. If not null then it will be assignment.
      Parameters:
      matrix - Matrix.
  • Method Details