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 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
