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
StopFlag.m
Go to the documentation of this file.
1 
2 
3 /* (Autoinserted by mtoc++)
4  * This source code has been filtered by the mtoc++ executable,
5  * which generates code that can be processed by the doxygen documentation tool.
6  *
7  * On the other hand, it can neither be interpreted by MATLAB, nor can it be compiled with a C++ compiler.
8  * Except for the comments, the function bodies of your M-file functions are untouched.
9  * Consequently, the FILTER_SOURCE_FILES doxygen switch (default in our Doxyfile.template) will produce
10  * attached source files that are highly readable by humans.
11  *
12  * Additionally, links in the doxygen generated documentation to the source code of functions and class members refer to
13  * the correct locations in the source code browser.
14  * However, the line numbers most likely do not correspond to the line numbers in the original MATLAB source files.
15  */
16 
17 class StopFlag {
36  public: /* ( Constant ) */
37 
38  static const ABS_ERROR = 1;
47  static const REL_ERROR = 2;
56  static const MAX_SIZE = 3;
65  static const NEGATIVE_POWFUN = 4;
74  static const MAX_ITER = 5;
83  static const SUCCESS = 6;
92  static const NO_SUPPORT_VECTORS_FOUND = 7;
101  static const TOL_OK = 8;
112 };
113 
static const REL_ERROR
Relative error tolerance reached.
Definition: StopFlag.m:47
static const ABS_ERROR
Absolute error tolerance reached.
Definition: StopFlag.m:38
static const TOL_OK
SVR-SMO specific flag. Indicates that the E+T values are smaller than the prescribed tolerance...
Definition: StopFlag.m:101
static const SUCCESS
Algorithm terminated otherwisely successful.
Definition: StopFlag.m:83
static const NEGATIVE_POWFUN
Stop flag from the VKOGA algorithm.
Definition: StopFlag.m:65
static const NO_SUPPORT_VECTORS_FOUND
SVR-specific flag that indicates that no support vectors have been found.
Definition: StopFlag.m:92
static const MAX_ITER
Maximum number of iterations reached.
Definition: StopFlag.m:74
static const MAX_SIZE
Maximum size reached.
Definition: StopFlag.m:56
StopFlag: Flags that algorithms can use to specify the reason for their termination.
Definition: StopFlag.m:17