Mercurial > hg > ltpda
comparison m-toolbox/classes/@ssm/ssm.m @ 45:a59cdb8aaf31 database-connection-manager
Merge
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Tue, 06 Dec 2011 19:07:22 +0100 |
parents | a71a40911c27 bc767aaa99a8 |
children |
comparison
equal
deleted
inserted
replaced
42:f90d4f666cc7 | 45:a59cdb8aaf31 |
---|---|
105 % 'states', sys.states, 'outputs', sys.outputs)); | 105 % 'states', sys.states, 'outputs', sys.outputs)); |
106 % | 106 % |
107 % | 107 % |
108 % <a href="matlab:utils.helper.displayMethodInfo('ssm', 'ssm')">Parameters Description</a> | 108 % <a href="matlab:utils.helper.displayMethodInfo('ssm', 'ssm')">Parameters Description</a> |
109 % | 109 % |
110 % VERSION: $Id: ssm.m,v 1.199 2011/05/13 15:14:39 ingo Exp $ | 110 % VERSION: $Id: ssm.m,v 1.200 2011/12/02 09:02:35 hewitson Exp $ |
111 % | 111 % |
112 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 112 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
113 | 113 |
114 classdef ssm < ltpda_uoh | 114 classdef ssm < ltpda_uoh |
115 | 115 |
714 function ii = getInfo(varargin) | 714 function ii = getInfo(varargin) |
715 ii = utils.helper.generic_getInfo(varargin{:}, 'ssm'); | 715 ii = utils.helper.generic_getInfo(varargin{:}, 'ssm'); |
716 end | 716 end |
717 | 717 |
718 function out = VEROUT() | 718 function out = VEROUT() |
719 out = '$Id: ssm.m,v 1.199 2011/05/13 15:14:39 ingo Exp $'; | 719 out = '$Id: ssm.m,v 1.200 2011/12/02 09:02:35 hewitson Exp $'; |
720 end | 720 end |
721 | 721 |
722 function out = SETS() | 722 function out = SETS() |
723 out = [SETS@ltpda_uoh, ... | 723 out = [SETS@ltpda_uoh, ... |
724 {'From Description'}, ... | 724 {'From Description'}, ... |
751 pl = ssm.getDefaultPlist('From Description'); | 751 pl = ssm.getDefaultPlist('From Description'); |
752 | 752 |
753 case 'from built-in model' | 753 case 'from built-in model' |
754 % Built-in | 754 % Built-in |
755 % This is inherited | 755 % This is inherited |
756 pl = plist.FROM_BUILT_IN; | 756 pl = combine(pl, plist.FROM_BUILT_IN); |
757 % withParams --> withparams changed to 'symbolic params' | 757 % withParams --> withparams changed to 'symbolic params' |
758 p = param({'symbolic params',['Give a cell-array of parameter names to keep in the expression.<br>',... | 758 p = param({'symbolic params',['Give a cell-array of parameter names to keep in the expression.<br>',... |
759 'By default this is empty and the model will be returned fully numeric.',... | 759 'By default this is empty and the model will be returned fully numeric.',... |
760 'You can also specify ''ALL'' to keep all parameters. Some models don''t support this',... | 760 'You can also specify ''ALL'' to keep all parameters. Some models don''t support this',... |
761 'option; see the specific help of the models for details.']}, {}); | 761 'option; see the specific help of the models for details.']}, {}); |