フィルターのクリア

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

1 回表示 (過去 30 日間)
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.

採用された回答

David Sanchez
David Sanchez 2014 年 1 月 14 日
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

その他の回答 (1 件)

Chandradhar Savanth
Chandradhar Savanth 2014 年 1 月 14 日
Thank you,David sanchez

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by