Uses of Class
org.simulator.math.odes.MultiTable

Packages that use MultiTable
org.simulator.math.odes The different solver classes that are all derived from AbstractDESSolver. 
org.simulator.sedml Classes for storing and interpreting an SBML model. 
 

Uses of MultiTable in org.simulator.math.odes
 

Methods in org.simulator.math.odes that return MultiTable
 MultiTable MultiTable.filter(double[] timepoints)
          Creates a multi block table only containing the values for the given timepoints (if available)
protected  MultiTable AbstractDESSolver.initResultMatrix(DESystem DES, double[] initialValues, double[] timePoints)
           
protected  MultiTable AbstractDESSolver.initResultMatrix(DESystem DES, double[] initialValues, double timeBegin, double timeEnd)
           
protected  MultiTable AbstractDESSolver.initResultMatrix(DESystem DES, double[] initialValues, double timeBegin, int numSteps)
           
 MultiTable DESSolver.solve(DESystem DES, double[] initialvalue, double[] timepoints)
          Solves the given differential equation system with the step size h and the number of steps as given starting at the value x.
 MultiTable AbstractDESSolver.solve(DESystem DES, double[] initialValues, double[] timePoints)
           
 MultiTable DESSolver.solve(DESystem DES, double[] initialValues, double timeBegin, double timeEnd)
          Solves the given differential equation system
 MultiTable AbstractDESSolver.solve(DESystem DES, double[] initialValues, double timeBegin, double timeEnd)
           
 MultiTable DESSolver.solve(DESystem DES, double[] initalValues, double x, double h, int steps)
          Solves the given differential equation system with the step size h and the number of steps as given starting at the value x.
 MultiTable AbstractDESSolver.solve(DESystem DES, double[] initialValues, double x, double h, int steps)
           
 MultiTable DESSolver.solve(DESystem DES, MultiTable.Block timeSeriesInitConditions, double[] initialValues)
          Solves the given DESystem using new initial conditions in each time step.
 MultiTable AbstractDESSolver.solve(DESystem DES, MultiTable.Block initConditions, double[] initialValues)
           
 

Methods in org.simulator.math.odes with parameters of type MultiTable
protected  void AbstractDESSolver.additionalResults(DESystem DES, double t, double[] yTemp, MultiTable data, int rowIndex)
          Compute additional result values
 

Uses of MultiTable in org.simulator.sedml
 

Methods in org.simulator.sedml that return MultiTable
 MultiTable SedMLSBMLSimulatorExecutor.createMultiTableFromProcessedResults(org.jlibsedml.Output wanted, org.jlibsedml.execution.IProcessedSedMLSimulationResults prRes)
           
 MultiTable SEDMLExecutor.execute(String outputID, InputStream is)
          EXecutes a SEDML file to produce the specified output.
 MultiTable MultTableSEDMLWrapper.getMultiTable()
          Gets the underlying MultiTable wrapped by this class.
 MultiTable SedMLSBMLSimulatorExecutor.processSimulationResults(org.jlibsedml.Output wanted, Map<org.jlibsedml.Task,org.jlibsedml.execution.IRawSedmlSimulationResults> res)
           
 

Constructors in org.simulator.sedml with parameters of type MultiTable
MultTableSEDMLWrapper(MultiTable mTable)