- #1
- 1,387
- 2
If I define a function, such as
f[x_, y_] := {-2 x + 2 x^2, -3 x + y + 3 x^2}
I can compute the derivative with
D[f[x, y], {{x, y}}]
but what is the syntax for evaluating this derivative at a point?
f[x_, y_] := {-2 x + 2 x^2, -3 x + y + 3 x^2}
I can compute the derivative with
D[f[x, y], {{x, y}}]
but what is the syntax for evaluating this derivative at a point?