surface fixed point value Z

1 回表示 (過去 30 日間)
abdullah qasim
abdullah qasim 2019 年 12 月 6 日
コメント済み: Star Strider 2019 年 12 月 7 日
Dear
I want to know the value of Z from the surfc function
That is when I give the value of x, y
It gives me the value of z
surfc (x, y, z)102W.jpg

採用された回答

Star Strider
Star Strider 2019 年 12 月 7 日
I do not have the function you used to create the surface in your Question.
Try this with it:
[X,Y] = ndgrid(-2.5:0.1:2.5); % Independent Variable Grid
Z = sin(X).^2 + cos(Y); % Dependent Variable (Use Your Function)
x_room = 1; % X-Room Coordinate
y_room = -1; % Y-Room Coordinate
z_room = griddata(X,Y,Z, x_room, y_room); % Interpolated Z-Room Coordinate
figure
surfc(X, Y, Z)
hold on
plot3(x_room, y_room, z_room, 'rd', 'MarkerFaceColor','r', 'MarkerSize',10)
hold off
grid on
Substitute your function for mine, and choose whatever you want for the coordinates (providing they are within the specified x and y limits).
  3 件のコメント
abdullah qasim
abdullah qasim 2019 年 12 月 7 日
you are solve my problem
thank you very much
Star Strider
Star Strider 2019 年 12 月 7 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (1 件)

darova
darova 2019 年 12 月 6 日
  • I want to know the value of Z from the surfc function
Here is it
123.PNG
  1 件のコメント
abdullah qasim
abdullah qasim 2019 年 12 月 7 日
I mean when I give any point in the room (x,y) already the vlue of z appere

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by