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!