Surf plot without interpolation

14 次查看(过去 30 天)
The x y coordinates of my data formed a T-shaped domain in stead of a rectangular domain.
[X,Y] = meshgrid(x,y);
Z = griddata(x,y,z, X, Y);
surf(X,Y,Z);
Using meshgrid and griddata will produce data out of the domain. How can i create s surf plot without interpolation? Or how to remove the extra data from the plot?
  1 个评论
Kean Yung
Kean Yung 2014-2-9
Stuffing Nan did work on the T-shaped domain, but i need to do this on a Y-shaped domain as well. Is there any other simple ways?

请先登录,再进行评论。

采纳的回答

John D'Errico
John D'Errico 2014-2-7
Stuff NaNs into the elements that are outside the area of interest. That part will not plot.

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by