Gradient of a Vector function

조회 수: 3 (최근 30일)
Naweed Niaz
Naweed Niaz 2022년 9월 20일
댓글: Torsten 2022년 9월 20일
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