shaping matrix w.r.t. the array

for example
Cyy=[0.1;0.2;0.3;0.4;0.5]; %array
how can I create Q matrix w.r.t the Cyy array as follows;
Q=[Cyy(1) Cyy(2) Cyy(3) Cyy(4) Cyy(5);Cyy(2) Cyy(1) Cyy(2) Cyy(3) Cyy(4) Cyy(5);Cyy(3) Cyy(2) Cyy(1) Cyy(2) Cyy(3);Cyy(4) Cyy(3) Cyy(2) Cyy(1) Cyy(2);Cyy(5) Cyy(4) Cyy(3) Cyy(2) Cyy(1)];

 採用された回答

Guillaume
Guillaume 2016 年 12 月 5 日

0 投票

fliplr(hankel(flip(Cyy), Cyy))

その他の回答 (0 件)

質問済み:

2016 年 12 月 5 日

回答済み:

2016 年 12 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by