i am trying to put my level curves and gradient vectors on same figure but i can't

3 次查看(过去 30 天)
well, it is a simple question i am new in MATLAB. i cannot put my gradient vectors and level curves on same figure, please help me.
here is my code.
f=@(x,y) 16*y.^2 + 9*x.^2;
g= gradient(f, [x, y])
figure(1)
[X, Y] = meshgrid(-1:.1:1,-1:.1:1);
z=f(X,Y);
contour(X,Y,z,[0:10])
G1 = subs(g(1), [x y], {X,Y});
G2 = subs(g(2), [x y], {X,Y});
quiver(X, Y, G1, G2)

采纳的回答

Star Strider
Star Strider 2019-4-20
Your current approach is not going to work.
Try this instead:
f=@(x,y) 16*y.^2 + 9*x.^2;
g = @(z) gradient(z)
figure(1)
[X, Y] = meshgrid(-1:.1:1,-1:.1:1);
z=f(X,Y);
contour(X,Y,z,[0:10])
hold on
[G1,G2] = gradient(z);
quiver(X, Y, G1, G2)
hold off
axis equal
Experiment to get the result you want.

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by