Description Usage Arguments Value Examples
View source: R/stopping_condition.R
stopping_conditions
is a function used in iterative methods for stopping the process
when the conditions are fulfilled. These conditions are stabilization of the function
value, reduction of the gradient norm to a value less than epsilon and maximum number of
evaluation of objective funtion.
1 | stopping_condition(x.k1, x.k, eps.f = 1e-09, eps.df = 1e-08)
|
x.k1 |
A list that contains the information of the point in current iterantion.
It must have the names |
x.k |
A list that contains the information of the point in current iterantion, in the
same pattern as |
eps.f |
A number for minimum variation of the objective function in the iterations. |
eps.df |
A number for minimum variation of the gradient in the iterations. |
Returns a results of boolean algebra.
1 2 3 4 5 6 | |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.