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
AOutputConv.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 {
42  public: /* ( setObservable ) */
43 
68  public: /* ( setObservable ) */
69 
71  this = this@KerMorObject;
72  this.registerProps(" TimeDependent ");
73  }
74 
75 
76 
77 #if 0 //mtoc++: 'set.TimeDependent'
78 function TimeDependent(value) {
79  if ~islogical(value)
80  error(" Property is logical. Must be set either true or false ");
81  end
82  this.TimeDependent= value;
83  }
84 
85 #endif
86 
87 
88  function copy = clone(copy) {
89  copy.TimeDependent= this.TimeDependent;
90  }
91 
92 
93  public: /* ( Abstract ) */ /* ( setObservable ) */
94 
95  virtual function matrix<double>y = evaluate(colvec<double> mu) = 0;
106  protected: /* ( Static ) */ /* ( setObservable ) */
107 
108  static function obj = loadobj(obj,varargin) {
109  obj = loadobj@general.AProjectable(obj, varargin[:]);
110  obj = loadobj@KerMorObject(obj, varargin[:]);
111  }
112 
113 
119 };
120 }
121 
function copy = clone(copy)
The interface method with returns a copy of the current class instance.
Definition: AOutputConv.m:88
Interface for all components that can be projected.
Definition: AProjectable.m:18
Base class for any KerMor class.
Definition: KerMorObject.m:17
function registerProps(varargin)
Call this method at any class that defines DPCM observed properties.
Definition: DPCMObject.m:125
virtual function matrix< double > y = evaluate(colvec< double > mu)
Template method that evaluates the output conversion matrix at the current time and [optional] para...
A boolean value.
KerMorObject()
Constructs a new KerMor object.
Definition: KerMorObject.m:55
A variable number of input arguments.
static function obj = loadobj(obj, varargin)
Definition: AOutputConv.m:108
logical TimeDependent
Flag whether the output converter actually depends on a time variable. Implemented for speed reasons ...
Definition: AOutputConv.m:44
BASEOUTPUTCONV Base class for output conversion "C". For simpler output conversions, it will be convenient to simply use the Pointer versions and pass the target function. For more complex output calculations which require local setup for example subclass this class and implement the evaluate method.
Definition: AOutputConv.m:18