?? tfpm_plot_cml.m
字號(hào):
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);
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -