Column Circulant Matrix
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Honglei Chen
le 8 Mar 2012
gallery('circul',[1 2 3])'
You can then take the first L columns
4 commentaires
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!