How to create a circulant matrix column wise?
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to create M x L circulant matrix column wise,where M=16 and L=20.
0 commentaires
Réponse acceptée
Plus de réponses (2)
KSSV
le 3 Nov 2020
You can refer this fileexchange: https://in.mathworks.com/matlabcentral/fileexchange/22858-circulant-matrix
Bruno Luong
le 3 Nov 2020
col = rand(16,1) % your 1-column vector
A = toeplitz(col,col(mod((1:20)-1,end)+1))
0 commentaires
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!