Borrar filtros
Borrar filtros

How to display minimum valley point on the surface,which is drawn using symbolic variables

1 visualización (últimos 30 días)
Hi
syms w0 w1;
J = .9486-1.0544*w0+.8916*w1+w0*w1+1.1*(w0^2+w1^2);
figure;ezsurf(J);
i plotted a 3D surface using above code.I would like to know how to display valley or minimum point (with 3 coordinates)
of that surface in the same plot.

Respuesta aceptada

David Sanchez
David Sanchez el 14 de En. de 2014
syms w0 w1;
J = .9486-1.0544*w0+.8916*w1+w0*w1+1.1*(w0^2+w1^2);
figure;ezsurf(J);
hold on
plot3(-0.5,-0.1,1.8,'r*'); % use your data
hold off

Más respuestas (1)

Chandradhar Savanth
Chandradhar Savanth el 14 de En. de 2014
Thank you,David sanchez

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by