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!