let f(x) = [2x^2, 3y^5]
I know how to calculate the derivative of f(x), which will be [d/dx 2x^2, d/dx 3y^5].
Is there a similar process being done when calculating the gradient of f(x)? If not, then how do you calculate the gradient of f(x)?
let f(x) = [2x^2, 3y^5]
I know how to calculate the derivative of f(x), which will be [d/dx 2x^2, d/dx 3y^5].
Is there a similar process being done when calculating the gradient of f(x)? If not, then how do you calculate the gradient of f(x)?
The gradient of a vector is a matrix
grad([f(x,y), g(x,y)]) = | df/dx dg/dx |
| |
| df/dy dg/dy |