block_exchange.m
来自「用于模拟时变非平稳的ARMA过程」· M 代码 · 共 13 行
M
13 行
function E= block_exchange(M, L)% function E= block_exchange(M, L)% This file is part of the TFPM toolbox v0.9 (c)% michael.jachan@tuwien.ac.at and underlies the GPL.% % Deliveres a block matrix with the block-antidiagonal filled with% MxM unity matrices. E= zeros(M*L);for l= 1:L E( (l-1)*M+1:l*M, (L-l)*M+1:(L-l+1)*M )= eye(M);end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?