Gradient of a Vector function

3 次查看(过去 30 天)
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 个评论
Torsten
Torsten 2022-9-20
A scalar function has a gradient, a vector function has a Jacobian.

请先登录,再进行评论。

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by