How to set one specific point on a 3-D surface ?

2 ビュー (過去 30 日間)
Cengizhan Taslicay
Cengizhan Taslicay 2021 年 8 月 31 日
回答済み: KSSV 2021 年 8 月 31 日
I calculate the minimum point on my surface consisting of the X, Y and Z axes. I want to show this calculated point on the Figure as well. I can select the point with the mouse, but it is quite difficult. How can I show this point in my figure?

回答 (1 件)

KSSV
KSSV 2021 年 8 月 31 日
[X,Y,Z] = peaks(100) ;
[val,idx] = max(Z(:)) ;
surf(X,Y,Z) ;
shading interp
hold on
plot3(X(idx),Y(idx),Z(idx),'+r')

カテゴリ

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