Systems Theory and Automatic Control

ADMITplotBisectioning
ADMIT documentation: ADMITplotBisectioning

ADMITplotBisectioning

ADMITplotBisectioning plots bisectioning results

HANDLE = ADMITplotBisectioning(OPTRESULT,[OPTIONS]) plots bisection
results OPTRESULT with options in valid ADMITresults object

HANDLE = ADMITplotBisectioning(OPTRESULT,HANDLE,[OPTIONS]) plots
bisection results OPTRESULT with options in valid ADMITobj_optresults
object into HANDLE

Function that plots the blocks of the Bisectioning procedure.  Option
variableIndices defines the variables (among VOI) that will be taken for
plotting, otherwise the first 3 variables of interest will be taken.

If handle is provided, corresponding figure will be used, otherwise a new
figure is created.

Inputs
  [...]     : square brackets notify that input is optional.
  OPTRESULT : valid ADMITresults-object (output of ADMITestimate)
  HANDLE    : handle of the figure, on which you want to plot
  OPTIONS   : valid ADMIToptions object

Returns
  HANDLE : handle of the figure with current plot

Examples

% Run the following example from the 'examples/MichaelisMenten' directory
opt = ADMITproject('MichaelisMenten.opt');
ops = ADMITsetOptions('ESTIMATE.outerBounding.use',0,...
                      'ESTIMATE.bisectioning.splitDepth',2,...
                      'PLOT.dynamicPlotting.bisectioning',0);
optInfo = ADMITcompose(opt,ops);
optResult = ADMITestimate(optInfo,ops);
% plot the result of the bisectioning procedure
ADMITplotBisectioning(optResult,ops);