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
Base.m
Go to the documentation of this file.
1 namespace error{
2 namespace lipfun{
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 
19 class Base
20  :public KerMorObject,
21  public ICloneable {
47  protected:
48 
50 
51 
52  public:
53 
54 
55  Base(bellfunc) {
56  this = this@KerMorObject;
57  this.bellfcn= bellfunc;
58  }
59 
60 
61 
62 
63  public: /* ( Abstract ) */
64 
65  virtual function ci = evaluate(di,Ct) = 0;
77 };
78 }
79 }
80 
ICLONEABLE Interface for cloneable handle classes.
Definition: ICloneable.m:17
Base class for any KerMor class.
Definition: KerMorObject.m:17
virtual function ci = evaluate(di, Ct)
Evaluates the local lipschitz estimation function.
KerMorObject()
Constructs a new KerMor object.
Definition: KerMorObject.m:55
Base:
Definition: Base.m:19
Base(bellfunc)
Definition: Base.m:55