How to create a circulant matrix column wise?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
ANJANA K P
el 3 de Nov. de 2020
I want to create M x L circulant matrix column wise,where M=16 and L=20.
0 comentarios
Respuesta aceptada
Más respuestas (2)
KSSV
el 3 de Nov. de 2020
You can refer this fileexchange: https://in.mathworks.com/matlabcentral/fileexchange/22858-circulant-matrix
Bruno Luong
el 3 de Nov. de 2020
col = rand(16,1) % your 1-column vector
A = toeplitz(col,col(mod((1:20)-1,end)+1))
0 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!