Package org.ejml.equation
Class ManagerTempVariables
- java.lang.Object
-
- org.ejml.equation.ManagerTempVariables
-
public class ManagerTempVariables extends java.lang.ObjectManages the creation and recycling of temporary variables used to store intermediate results. The user cannot directly access these variables
-
-
Constructor Summary
Constructors Constructor Description ManagerTempVariables()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VariableDoublecreateDouble()VariableDoublecreateDouble(double value)VariableIntegercreateInteger()VariableIntegercreateInteger(int value)VariableIntegerSequencecreateIntegerSequence(IntegerSequence sequence)VariableMatrixcreateMatrix()java.util.RandomgetRandom()
-
-
-
Method Detail
-
getRandom
public java.util.Random getRandom()
-
createMatrix
public VariableMatrix createMatrix()
-
createDouble
public VariableDouble createDouble()
-
createDouble
public VariableDouble createDouble(double value)
-
createInteger
public VariableInteger createInteger()
-
createInteger
public VariableInteger createInteger(int value)
-
createIntegerSequence
public VariableIntegerSequence createIntegerSequence(IntegerSequence sequence)
-
-