Class 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
    • Constructor Summary

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

      • 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 Detail

      • 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 Detail

      • isTemp

        public boolean isTemp()
      • setTemp

        public void setTemp​(boolean temp)