Gradient of a Vector function

1 vue (au cours des 30 derniers jours)
Naweed Niaz
Naweed Niaz le 20 Sep 2022
Commenté : Torsten le 20 Sep 2022
syms x y z
g = @(x,y,z) [(x+y^3); 0.8*(x^3+y);(x^2+y^2)];
%% applying stokes theorem, gradient of vector field required
[X,Y,Z] = gradient(g);
%% returns error in line 4 with gradient(g) and says
%%Unary operator '.'' is not supported for operand of type 'function_handle'.
  1 commentaire
Torsten
Torsten le 20 Sep 2022
A scalar function has a gradient, a vector function has a Jacobian.

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 20 Sep 2022
syms x y z
f(x,y,z) = x+y^3 ;
gradient(f)
ans(x, y, z) = 

Plus de réponses (0)

Produits


Version

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by