Is it possible to make a meshgrid wraparound
1 回表示 (過去 30 日間)
古いコメントを表示
Is there a way to make a mesgrid and have the edges wraparound?
Thanks
1 件のコメント
採用された回答
Walter Roberson
2022 年 3 月 8 日
x = linspace(0,1,7);
y = linspace(0, 2*pi, 5);
[X, Y] = meshgrid([x, x(1)], [y, y(1)])
Note however, that functions that require meshgrid "plaid" inputs often require that the inputs be sorted, and may reject wrap-around.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!