How to create a circulant matrix column wise?
8 次查看(过去 30 天)
显示 更早的评论
I want to create M x L circulant matrix column wise,where M=16 and L=20.
0 个评论
采纳的回答
更多回答(2 个)
KSSV
2020-11-3
You can refer this fileexchange: https://in.mathworks.com/matlabcentral/fileexchange/22858-circulant-matrix
Bruno Luong
2020-11-3
col = rand(16,1) % your 1-column vector
A = toeplitz(col,col(mod((1:20)-1,end)+1))
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!