view m-toolbox/classes/+utils/@models/built_in_model_template.m @ 43:bc767aaa99a8

CVS Update
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Tue, 06 Dec 2011 11:09:25 +0100
parents f0afece42f48
children
line wrap: on
line source

% A built-in model of class <CLASS> called <NAME>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% DESCRIPTION: A built-in model of class <CLASS> called <NAME>
%
% CALL:
%           mdl = <CLASS>(plist('built-in', '<NAME>'));
%
% INPUTS:
%
%
% OUTPUTS:
%           mdl - an object of class <CLASS>
%
%
% INFO:
%   <a href="matlab:utils.models.displayModelOverview('<CLASS>_model_<NAME>')">Model Information</a>
%
%
% REFERENCES:
%
%
% VERSION:     $Id: built_in_model_template.m,v 1.2 2011/12/02 09:15:11 hewitson Exp $
%
% HISTORY:
%
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

% YOU SHOULD NOT NEED TO EDIT THIS MAIN FUNCTION
function varargout = <CLASS>_model_<NAME>(varargin)
  
  varargout = utils.models.mainFnc(varargin(:), ...
    mfilename, ...
    @getModelDescription, ...
    @getModelDocumentation, ...
    @getVersion, ...
    @versionTable);
  
end


%--------------------------------------------------------------------------
% AUTHORS EDIT THIS PART
%--------------------------------------------------------------------------

function desc = getModelDescription
  desc = 'A built-in model that ...';
end

function doc = getModelDocumentation
  doc = sprintf([...
    'Some information about this model. You can write html code here.\n'...
    ]);
end

% default version is always the first one
function vt = versionTable()
  
  vt = {...
    'Version 1', @version1, ...
    };
  
end

% This version is ...
%
function varargout = version1(varargin)
  
  if nargin == 1 && ischar(varargin{1})
    switch varargin{1}
      case 'plist'
        
        % The plist for this version of this model
        pl = plist();
                
        % parameter 'My Parameter'
        p = param({'My Parameter', ['A Parameter which configures the model in some way.']}, ...
          paramValue.EMPTY_DOUBLE);
        pl.append(p);        
        
        % set output
        varargout{1} = pl;
        
      case 'description'
        varargout{1} = 'This version is ...';
      case 'info'
        % Add info calls for any other models that you use to build this
        % model. For example:
        %         varargout{1} = [ ...
        %  ao_model_SubModel1('info', 'Some Version') ...
        %  ao_model_SubModel2('info', 'Another Version') ...
        %                        ];
        %
        varargout{1} = [];
      otherwise
        error('unknown inputs');
    end
    return;
  end
  
  %---  Input plist
  % Changes to this plist will be captured in the history
  historyPlist = varargin{1}; 
  % This can be locally modified without the changes being reflected in the history
  localPlist   = copy(historyPlist, 1); 
  
  % Get parameters
  p = localPlist.find('My Parameter');
  
  % Build the model object the way you want
  
  obj = <CLASS>();
  
  varargout{1} = obj;
  
end


%--------------------------------------------------------------------------
% AUTHORS SHOULD NOT NEED TO EDIT BELOW HERE
%--------------------------------------------------------------------------


%--------------------------------------------------------------------------
% Get Version
%--------------------------------------------------------------------------
function v = getVersion
  
  v = '$Id: built_in_model_template.m,v 1.2 2011/12/02 09:15:11 hewitson Exp $';
  
end