KerMor  0.9
Model order reduction for nonlinear dynamical systems and nonlinear approximation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
InterpolConfig.m
Go to the documentation of this file.
1 namespace general{
2 namespace interpolation{
3 
4 
5 /* (Autoinserted by mtoc++)
6  * This source code has been filtered by the mtoc++ executable,
7  * which generates code that can be processed by the doxygen documentation tool.
8  *
9  * On the other hand, it can neither be interpreted by MATLAB, nor can it be compiled with a C++ compiler.
10  * Except for the comments, the function bodies of your M-file functions are untouched.
11  * Consequently, the FILTER_SOURCE_FILES doxygen switch (default in our Doxyfile.template) will produce
12  * attached source files that are highly readable by humans.
13  *
14  * Additionally, links in the doxygen generated documentation to the source code of functions and class members refer to
15  * the correct locations in the source code browser.
16  * However, the line numbers most likely do not correspond to the line numbers in the original MATLAB source files.
17  */
18 
20  :public IClassConfig {
37  public:
38 
39 
41  this.RequiredPrototypeClass= " general.interpolation.KernelInterpol ";
42  this.Prototype= general.interpolation.KernelInterpol;
43  }
44 
45 
46  function n = getNumConfigurations() {
47  n = 1;
48  }
49 
50 
51 
52  function handleobject = configureInstance(unused1) {
53  object = this.getProtoClass;
54  }
65  function charstr = getConfigurationString(unused1,unused2) {
66  str = ;
67  }
79  function str = getConfiguredPropertiesString() {
80  str = " none ";
81  }
82 
83 
84  function conf = getSubPart(unused1,unused2) {
85  conf = this;
86  }
87 
88 
89  function copy = clone() {
90  copy = general.interpolation.InterpolConfig;
91  copy = clone@IClassConfig(this, copy);
92  }
93 
94 
95 
96  protected:
97 
98 
99  function collectRanges(unused1,unused2) {
100  }
111 };
112 }
113 }
114 
IClassConfig: Abstract interface for a set of configurations that can be applied to a given algorithm...
Definition: IClassConfig.m:17
function n = getNumConfigurations()
Returns the number of configurations that can be applied.
function ptype = getProtoClass()
Definition: IClassConfig.m:122
function conf = getSubPart(unused1, unused2)
function handle object = configureInstance(unused1)
Returns the number of configurations that can be applied.
function char str = getConfigurationString(unused1, unused2)
Returns the number of configurations that can be applied.
ICloneable Prototype
The prototype class that is to be used as base class before configuring a new instance.
Definition: IClassConfig.m:42
function collectRanges(unused1, unused2)
do nothing
function str = getConfiguredPropertiesString()
Returns a string of the changed properties by this IClassConfig instance.
char RequiredPrototypeClass
Determines the class that is allowed to be configured.
Definition: IClassConfig.m:55