⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tfpm_plot_cml.m

📁 用于模拟时变非平稳的ARMA过程
💻 M
字号:
function tfpm_plot_cml(Cml, c0l)% function tfpm_plot_cml(Cml, c0l)%   This file is part of the TFPM toolbox v0.9 (c)%   michael.jachan@tuwien.ac.at and underlies the GPL.% % Dimensions[M, L]= param_dim(Cml);if(c0l)   mesh(abs(Cml));   axis([1 M+1 1 2*L+1 0 max(max(abs(Cml)))])   set(gca, 'XTick'     , (1:M+2));   set(gca, 'XTickLabel', 0:M+1);else   mesh(abs(Cml(:, 2:M+1)));   axis([1 M 1 2*L+1 0 max(max(abs(Cml(:, 2:M+1))))])   set(gca, 'XTick'     , (1:M+2));   set(gca, 'XTickLabel', 1:M);end;   set(gca, 'YTick'     , (1:2*L+1));set(gca, 'YTickLabel', -L:L);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -