Generating for loop for toeplitz for Q order analysis.
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentario
Respuestas (1)
Andrei Bobrov
el 20 de Feb. de 2013
Editada: Andrei Bobrov
el 20 de Feb. de 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
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!