Get rid of connecting line (3D plot)

4 views (last 30 days)
Hi,
Anyone have idea to take off the lines that connect my both extreme end point when I am using the surf.
Thanks,
Jerome.

Accepted Answer

Star Strider
Star Strider on 23 Mar 2021
One option would be to use either the sort or unique functions (or their friends) on the x-matrix or vector.
Those usually work in such situations.
One option, instead of using meshgrid with the arguments you provided to it is instead to do:
N = 50;
xv = linspace(min(X), max(X), N);
yv = linspace(min(Y), max(Y), N);
[xi,yi] = meshgrid(xv, yv);
That may also eliminate the problem.
Choose ‘N’ to provide the resolution you want in the plot.
  2 Comments
Star Strider
Star Strider on 23 Mar 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Sign in to comment.

More Answers (0)

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!