Mercurial > hg > ltpda
comparison m-toolbox/classes/+utils/@modules/modules.m @ 0:f0afece42f48
Import.
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 23 Nov 2011 19:22:13 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f0afece42f48 |
---|---|
1 % MODULES helper class for LTPDA extension modules. | |
2 % | |
3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
4 % | |
5 % DESCRIPTION: MODULES helper class for LTPDA extension modules. | |
6 % | |
7 % To see the available static methods, call | |
8 % | |
9 % >> methods utils.modules | |
10 % | |
11 % HISTORY: M Hewitson 21-01-11 | |
12 % Creation | |
13 % | |
14 % VERSION: $Id: modules.m,v 1.2 2011/03/28 11:27:13 hewitson Exp $ | |
15 % | |
16 % | |
17 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
18 | |
19 classdef modules | |
20 | |
21 %------------------------------------------------ | |
22 %--------- Declaration of Static methods -------- | |
23 %------------------------------------------------ | |
24 methods (Static) | |
25 | |
26 varargout = buildModule(varargin) | |
27 varargout = moduleInfo(varargin) | |
28 | |
29 end | |
30 | |
31 end | |
32 % END |