![]() |
KerMor
0.9
Model order reduction for nonlinear dynamical systems and nonlinear approximation
|
StopFlag: Flags that algorithms can use to specify the reason for their termination. More...
StopFlag: Flags that algorithms can use to specify the reason for their termination.
This class is part of the framework
Homepage
http://www.morepas.org/software/index.htmlDocumentation
http://www.morepas.org/software/kermor/index.htmlLicense
KerMor license conditions Definition at line 17 of file StopFlag.m.
Static Public Attributes | |
static const | ABS_ERROR = 1 |
Absolute error tolerance reached. More... | |
static const | REL_ERROR = 2 |
Relative error tolerance reached. More... | |
static const | MAX_SIZE = 3 |
Maximum size reached. More... | |
static const | NEGATIVE_POWFUN = 4 |
Stop flag from the VKOGA algorithm. More... | |
static const | MAX_ITER = 5 |
Maximum number of iterations reached. More... | |
static const | SUCCESS = 6 |
Algorithm terminated otherwisely successful. More... | |
static const | NO_SUPPORT_VECTORS_FOUND = 7 |
SVR-specific flag that indicates that no support vectors have been found. More... | |
static const | TOL_OK = 8 |
SVR-SMO specific flag. Indicates that the E+T values are smaller than the prescribed tolerance. More... | |
|
static |
Absolute error tolerance reached.
Default: 1
Definition at line 38 of file StopFlag.m.
Referenced by approx.algorithms.VKOGA.startAdaptiveExtension().
|
static |
|
static |
Maximum size reached.
Default: 3
Definition at line 56 of file StopFlag.m.
Referenced by approx.algorithms.VKOGA.startAdaptiveExtension().
|
static |
Stop flag from the VKOGA algorithm.
Default: 4
Definition at line 65 of file StopFlag.m.
Referenced by approx.algorithms.VKOGA.startAdaptiveExtension().
|
static |
SVR-specific flag that indicates that no support vectors have been found.
Default: 7
Definition at line 92 of file StopFlag.m.
Referenced by general.regression.BaseScalarSVR.computeKernelCoefficients().
|
static |
Relative error tolerance reached.
Default: 2
Definition at line 47 of file StopFlag.m.
Referenced by approx.algorithms.VKOGA.startAdaptiveExtension().
|
static |
Algorithm terminated otherwisely successful.
Default: 6
Definition at line 83 of file StopFlag.m.
Referenced by general.interpolation.KernelInterpol.computeKernelCoefficients(), general.regression.ScalarNuSVR.regress(), general.regression.ScalarEpsSVR.regress(), and general.regression.KernelLS.regress().
|
static |
SVR-SMO specific flag. Indicates that the E+T values are smaller than the prescribed tolerance.
Default: 8
Definition at line 101 of file StopFlag.m.