view m-toolbox/classes/@modelViewer/buildObject.m @ 52:daf4eab1a51e database-connection-manager tip

Fix. Default password should be [] not an empty string
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 07 Dec 2011 17:29:47 +0100
parents f0afece42f48
children
line wrap: on
line source

function obj = buildObject(mainfig)
  
    % get model type
  h = findobj(mainfig.handle, 'Tag', 'ModelTypeSelect');
  models = get(h, 'String');
  modelType = models{get(h, 'Value')};
  
  % get model name
  h = findobj(mainfig.handle, 'Tag', 'ModelSelect');
  models = get(h, 'String');
  model = models{get(h, 'Value')};
  
  % get parameters
  h = findobj(mainfig.handle, 'Tag', 'MODELVIEWERparamspanel');  
  pl = modelViewer.getParamsFromPanel(h);
  
  % Pass to constructor
  obj = [];
  switch modelType
    case 'ao'
      
      pl = combine(plist('built-in', model), pl);      
      obj = feval('ao', pl);

    case 'ssm'
      
      pl = combine(plist('built-in', model), pl);      
      obj = feval('ssm', pl);
      
    otherwise
      error('model type %s is currently unsupported', modelType);
  end
end