5 lines
68 B
Matlab
5 lines
68 B
Matlab
syms x y z;
|
|
|
|
f(x,y,z) = [x*y^3; x*y*z; y^2*z^4];
|
|
|
|
disp(jacobian(f)); |