Column Circulant Matrix
显示 更早的评论
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
回答(1 个)
Honglei Chen
2012-3-8
gallery('circul',[1 2 3])'
You can then take the first L columns
4 个评论
S. David
2012-3-8
Honglei Chen
2012-3-8
Just pass your first column in the place of [1 2 3] in the above code and see what the output is. The last transpose should restore your circulant matrix on columns.
S. David
2012-3-15
S. David
2012-3-15
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!