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 日

0 投票

syms x y z
f(x,y,z) = x+y^3 ;
gradient(f)
ans(x, y, z) = 

その他の回答 (0 件)

カテゴリ

製品

リリース

R2020a

質問済み:

2022 年 9 月 20 日

コメント済み:

2022 年 9 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by