📄 flipx.m
字号:
function flipx
% FLIPX: script to flip the direction of the x axis
%
% just type "flipx" at the matlab prompt
state=get(gca,'xdir');
if(strcmp(state,'normal'))
set(gca,'xdir','reverse')
else
set(gca,'xdir','normal')
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -