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!