📄 vertlabels.m
字号:
function vertlabels(curr_axis,labels)%% This function adds vertical labels to a plot %%%%%%%%%%%%%%%%% vertlabels.m %%%%%%%%%%%%%%%%%%% Discrete-Time Control Problems using %% MATLAB and the Control System Toolbox %% by J.H. Chow, D.K. Frederick, & N.W. Chbat %% Brooks/Cole Publishing Company %% September 2002 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%numTicks=size(labels,1);% Set the tick locations and remove the labelsset(curr_axis,'XTick',1:numTicks,'XTickLabel','')%% Estimate the location of the labels based on the position% of the xlabelhx = get(curr_axis,'XLabel'); % Handle to xlabelset(hx,'Units','data');pos = get(hx,'Position');y = pos(2);% Place the new labelsfor i = 1:numTicks txt(i) = text(i,y,labels(i,:));endset(txt,'Rotation',90,'HorizontalAlignment','right')%%%%%%%%%%
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -