Column Circulant Matrix
Mostra commenti meno recenti
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
Risposte (1)
Honglei Chen
il 8 Mar 2012
gallery('circul',[1 2 3])'
You can then take the first L columns
4 Commenti
S. David
il 8 Mar 2012
Honglei Chen
il 8 Mar 2012
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
il 15 Mar 2012
S. David
il 15 Mar 2012
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!