I can define the following vector function
$f(x,y,z) = [x^2 - 1, x^3 + y^2, z]$
in MatLab or in Maple.
I want to find (and evaluate) the first, second and third derivatives of it. How to find : $\nabla{f}$, $\nabla^2{f}$ and $\nabla^3{f}$? Here vector function $f$ is differentiated with respect to vector $(x,y,z)$. I can do the simple job of finding $\nabla{f}$ with Maple as follows :
$f(x,y,z) := [x^2 - 1, x^3 + y^2, z]$
$\nabla{f} := Jacobian (f,[x,y,z])$
But how to differentiate $\nabla{f}$?
Is there a function in MatLab (or in Maple) which may take the above function as an input and evaluate its derivatives for a given value of (x,y,z)?
Thank you.
This is a solution to your problem.