Description Usage Arguments Details Value Author(s) Examples
grfwd
computes the forward difference approximation to the gradient of
user function userfn
.
1 |
par |
parameters to the user objective function userfn |
userfn |
User-supplied objective function |
fbase |
The value of the function at the parameters, else NULL. This is to save recomputing the function at this point. |
env |
Environment for scratchpad items (like |
... |
optional arguments passed to the objective function. |
Package: | grfwd |
Depends: | R (>= 2.6.1) |
License: | GPL Version 2. |
grfwd
returns a single vector object df
which approximates the
gradient of userfn at the parameters par. The approximation is controlled by a
global value optderiveps
that is set when the package is attached.
John C. Nash
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Example of use of grfwd
[1] 1 2 3 4
[1] 1.000001 4.000000 27.000000 256.000002
compare to
[1] 1 4 27 256
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.