how to plot the gradient of a equation having specific region?
1 次查看(过去 30 天)
显示 更早的评论
hello i have the equation
f(x,y)=-5x^3+4yx+6y^3+1
the gradient with respect to x is
f(x)=-15*x^3+4*y
how to plot the gradient having area
-2<x<2, -2<y<2
0 个评论
回答(2 个)
Torsten
2022-10-18
x = -2:0.1:2;
y = x;
[X,Y] = meshgrid(x,y);
f = @(x,y) -15*x.^2+4*y;
surf(X,Y,f(X,Y))
0 个评论
Star Strider
2022-10-18
Perhaps this —
syms x y
f(x,y)=-5*x^3+4*y*x+6*y^3+1
Gf = gradient(f,x)
figure
fsurf(Gf, [-2 2 -2 2])
xlabel('X')
ylabel('Y')
.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!