Modify the surf function to plot a surface including the end points of incomplete data matrix?

1 次查看(过去 30 天)
The surf function creates surfaces based on four points. But for the edge of the sample data below, there are only three points available. Is there a better way to plot this surface or is there a clever way to alter the surf function to use three points when that's all that's available?
x = [
23 25 34 36 40;
45 50 56 70 NaN;
44 55 66 NaN NaN;
57 70 NaN NaN NaN;
61 NaN NaN NaN NaN;
];
surf(x)

回答(1 个)

Doug Hull
Doug Hull 2012-10-10
You would need to make patches instead of surface if you want triangles. See patch command.

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by