Column Circulant Matrix
2 ビュー (過去 30 日間)
古いコメントを表示
Hello,
How to create the following coulumn circulant matrix in matlab:
X=
[
x_0 x_{p-1} .... x_{P-L}
x_1 x_0 .... x_{P-L+1}
.
.
.
x_{p-1} x_{p-2} ... x_{P-L-1}
]
where p>L and both are positive integers.
Thanks
0 件のコメント
回答 (1 件)
Honglei Chen
2012 年 3 月 8 日
gallery('circul',[1 2 3])'
You can then take the first L columns
4 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!