toeptoep.m
来自「用于模拟时变非平稳的ARMA过程」· M 代码 · 共 19 行
M
19 行
function T= toeptoep(t)% function T= toeptoep(t)% This file is part of the TFPM toolbox v0.9 (c)% michael.jachan@tuwien.ac.at and underlies the GPL.% % Generates a PMxPM Toeplitz/block-Toeplitz matrix T using the% (2M-1) length-(2P-1) sequences in the rows of t.PM= size(t);P= (PM(2)+1)/2;M= (PM(1)+1)/2;T= zeros(P*M);for m1= 1:M for m2= 1:M T(P*(m1-1)+1:P*m1, P*(m2-1)+1:P*m2)= toep(t(M+m2-m1, :)); end;end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?