trisurf data 3dplot with NaN values
显示 更早的评论

I'm trying to plot some 3d data. Some values are not valid and should be ignored by setting them to NaN (let's say all x<y). My Code looks like..
[x,y] = meshgrid(1:3,1:5);
tri = delaunay(x,y);
trisurf(tri,x,y,data);
The attached graphic shows my problem. There is data at (1,1) and I need a triangle between the points (1,1),(2,1),(2,2) and (2,2),(3,2),(3,3). The solution seems to be simple but I'm trying to solve this for quite a while now. Thanks for help!
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Triangulation Representation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!