Modeloptimizer: Difference between revisions

From Eigenvector Research Documentation Wiki
Jump to navigation Jump to search
imported>Scott
(Created page with "===Purpose=== Create model for iterating over analysis models. ===Synopsis=== : modeloptimizer(figure_handle);%Add snapshot to current model. : modeloptimizer(figure_handle...")
 
imported>Scott
 
Line 15: Line 15:
===Description===
===Description===


When called with a figure handle snapshots will be taken from figure. After several snapshots are taken a list of unique combinations can be generated in the .combinations field. Combinations can then be used to create a list of unique snapshots know as "model runs", that will then be calculated.
When called with a figure handle snapshots will be taken from figure. After several snapshots are taken a list of unique combinations can be generated in the .combinations field. Combinations can then be used to create a list of unique snapshots know as "model runs", that will then be calculated. See [[modeloptimizergui]] for information about the interface to this function.


===Options===
===Options===

Latest revision as of 19:45, 16 October 2013

Purpose

Create model for iterating over analysis models.

Synopsis

modeloptimizer(figure_handle);%Add snapshot to current model.
modeloptimizer(figure_handle,'snapshot');%Add snapshot to current model.
modeloptimizer('snapshot',modelOBJ);%Add model to optimizer.
modeloptimizer('snapshot',modelID);%Add model to optimizer via modelID (uses modelID to look model up in cache).
figureHandle = modeloptimizer;%Get figure handle of GUI.
newmodel = modeloptimizer(newdata,optimizerodel);%Add model to optimizer.
newmodel = modeloptimizer(newX,newY,optimizerModel);%Apply to new data.

Description

When called with a figure handle snapshots will be taken from figure. After several snapshots are taken a list of unique combinations can be generated in the .combinations field. Combinations can then be used to create a list of unique snapshots know as "model runs", that will then be calculated. See modeloptimizergui for information about the interface to this function.

Options

options = a structure array with the following fields:

  • duplicates: [{'on'}|'off'] Check for and disregard duplicate model snapshots.
  • add_to_run: [{'on'}|'off'] Automatically add snapshot to last run.
  • waitbar: [{'on'}|'off'] Display waitbar.

See Also

comparemodels