Get rid of connecting line (3D plot)
4 views (last 30 days)
Show older comments
Teoh Jun Chang
on 23 Mar 2021
Commented: Star Strider
on 23 Mar 2021
Hi,
Anyone have idea to take off the lines that connect my both extreme end point when I am using the surf.

Thanks,
Jerome.
0 Comments
Accepted Answer
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
on 23 Mar 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!