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
AInputConv.m
Go to the documentation of this file.
1 namespace dscomponents{
2 
3 
4 /* (Autoinserted by mtoc++)
5  * This source code has been filtered by the mtoc++ executable,
6  * which generates code that can be processed by the doxygen documentation tool.
7  *
8  * On the other hand, it can neither be interpreted by MATLAB, nor can it be compiled with a C++ compiler.
9  * Except for the comments, the function bodies of your M-file functions are untouched.
10  * Consequently, the FILTER_SOURCE_FILES doxygen switch (default in our Doxyfile.template) will produce
11  * attached source files that are highly readable by humans.
12  *
13  * Additionally, links in the doxygen generated documentation to the source code of functions and class members refer to
14  * the correct locations in the source code browser.
15  * However, the line numbers most likely do not correspond to the line numbers in the original MATLAB source files.
16  */
17 
19  :public KerMorObject,
20  public general.AProjectable {
37  public: /* ( setObservable ) */
38 
61  public: /* ( setObservable ) */
62 
64  }
73  public: /* ( Abstract ) */ /* ( setObservable ) */
74 
75  virtual function B = evaluate(colvec<double> mu) = 0;
86  protected: /* ( Static ) */ /* ( setObservable ) */
87 
88  static function obj = loadobj(obj,varargin) {
89  obj = loadobj@KerMorObject(obj, varargin[:]);
90  obj = loadobj@general.AProjectable(obj, varargin[:]);
91  }
92 
93 
94 
95 };
96 }
97 
98 
99 
Interface for all components that can be projected.
Definition: AProjectable.m:18
AInputConv: Base class for input conversion "B". For simpler input conversions, it will be convenient...
Definition: AInputConv.m:18
Base class for any KerMor class.
Definition: KerMorObject.m:17
static function obj = loadobj(obj, varargin)
Definition: AInputConv.m:88
A boolean value.
KerMorObject()
Constructs a new KerMor object.
Definition: KerMorObject.m:55
A variable number of input arguments.
function prepareSimulation(colvec< double > mu)
do nothing by default
Definition: AInputConv.m:63
virtual function B = evaluate(colvec< double > mu)
Template method that evaluates the input conversion matrix at the current time and [optional] param...
logical TimeDependent
Flag that indicates if the AInputConv is (truly) time-dependent.
Definition: AInputConv.m:39