Hi,
Anyone have idea to take off the lines that connect my both extreme end point when I am using the surf.
Thanks,
Jerome.

 Réponse acceptée

Star Strider
Star Strider le 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 commentaires

Teoh Jun Chang
Teoh Jun Chang le 23 Mar 2021
Thank you!
Star Strider
Star Strider le 23 Mar 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

Produits

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by