Generating for loop for toeplitz for Q order analysis.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
b = toeplitz(x,[x(1) zeros(1,Q)])\y;
I have a toeplitz matrix that I want to write a loop for Q=(1:150).
any ideas?
1 Commento
Risposte (1)
Andrei Bobrov
il 20 Feb 2013
Modificato: Andrei Bobrov
il 20 Feb 2013
b{150} = toeplitz(x,[x(1) zeros(1,150)])\y; % THAT SUCH x, y
for jj = 1:150
b{jj} = b{end}(:,1:jj);
end
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!