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

 採用された回答

Star Strider
Star Strider 2021 年 3 月 23 日

0 投票

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 件のコメント

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

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

製品

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by