Generating for loop for toeplitz for Q order analysis.
5 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Andrei Bobrov
2013 年 2 月 20 日
編集済み: Andrei Bobrov
2013 年 2 月 20 日
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
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!