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
AJacobianSolver.m
Go to the documentation of this file.
1 namespace solvers{
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 {
54  public: /* ( setObservable ) */
55 
98  public: /* ( setObservable ) */
99 
100 
102  this.registerProps(" JacFun "," JPattern ");
103  }
104 
105 
106 
107 #if 0 //mtoc++: 'set.JacFun'
108 function JacFun(value) {
109  if ~isempty(value) && ~isa(value," function_handle ")
110  error(" JacFun must be a function handle ");
111  /* elseif ~isempty(value) && nargin(value) ~= 2
112  * error('JacFun must take exactly two arguments: t,x'); */
113  end
114  this.JacFun= value;
115  }
116 
117 #endif
118 
125 #if 0 //mtoc++: 'set.JPattern'
126 function JPattern(value) {
127  if ~isempty(value) && ~issparse(value)
128  error(" JPattern must be a sparse matrix. ");
129  end
130  this.JPattern= value;
131  }
132 
133 #endif
134 
144 };
145 }
146 
AImplSolver: Base abstract class for solvers that can use Jacobian information for faster computation...
A matlab matrix.
Base class for any KerMor class.
Definition: KerMorObject.m:17
sparsematrix JPattern
The sparsity pattern of the jacobian .
function_handle JacFun
A function handle to compute the core function's jacobian.
function registerProps(varargin)
Call this method at any class that defines DPCM observed properties.
Definition: DPCMObject.m:125
A MatLab function handle.
Matlab's base handle class (documentation generation substitute)
A matlab sparse matrix.