How to create a circulant matrix column wise?

Plus de réponses (2)

KSSV
KSSV le 3 Nov 2020

0 votes

2 commentaires

ANJANA K P
ANJANA K P le 3 Nov 2020
Thank you for the response.But I am again getting a square matrix .I need the result as M x L. ie,16*20 matrix as the answer.
Thanks in Advcance.
KSSV
KSSV le 3 Nov 2020
Modifié(e) : KSSV le 3 Nov 2020
Read about Circshift.
m = 16 ; n = 20 ;
r = rand(m,1) ;
iwant = zeros(m,n) ;
iwant(:,1) = r ;
for i = 2:n
iwant(:,i) = circshift(iwant(:,i-1),1) ;
end

Connectez-vous pour commenter.

col = rand(16,1) % your 1-column vector
A = toeplitz(col,col(mod((1:20)-1,end)+1))

Catégories

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by