igradient
Gradient of a multivariate, scalar-valued function using the complex-step approximation.
Back to Numerical Differentiation Toolbox Contents.
Contents
Syntax
g = igradient(f,x0) g = igradient(f,x0,h)
Description
g = igradient(f,x0) numerically evaluates the gradient of with respect to at using the complex-step approximation with a default step size of .
g = igradient(f,x0,h) numerically evaluates the gradient of with respect to at using the complex-step approximation with a user-specified step size .
Input/Output Parameters
Variable | Symbol | Description | Format | |
Input | f | multivariate, scalar-valued function () | 1×1 function_handle |
|
x0 | evaluation point | n×1 double |
||
h | (OPTIONAL) step size (defaults to ) | 1×1 double |
||
Output | g | gradient of with respect to , evaluated at | n×1 double |
Note
- This function requires evaluations of .
Example
Approximate the gradient of at using the igradient function, and compare the result to the true result of
Approximating the gradient,
f = @(x) x(1)^5+sin(x(2))^3; x0 = [5;8]; g = igradient(f,x0)
g = 1.0e+03 * 3.1250 -0.0004
Calculating the error,
error = g-[3125;3*sin(8)^2*cos(8)]
error = 1.0e-12 * 0.4547 0.0001