TAKING [X1 X2 …] and [Y1 Y2 …] and reshaping them into [Y1 X1 Y2 X2 …]

3 ビュー (過去 30 日間)
mark palmer
mark palmer 2020 年 6 月 19 日
回答済み: the cyclist 2020 年 6 月 19 日
I would like to take 2 1D arrays [X1 X2 …] and [Y1 Y2 …] and reshape them into a [Y1 X1 Y2 X2 …] array for use as polygon vertices in insertShape.
For instance
x = [1 3 8];
y = [9 5 7];
xy = [9 1 5 3 7 8];
I already have figured out some long, stupid, time-consuming ways to do this, but I'm curious if there's an easy, efficient way to do this that somebody is doing.

採用された回答

the cyclist
the cyclist 2020 年 6 月 19 日
xy = reshape([y;x],1,[]);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeBar Plots についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by