📄 coord.m
字号:
hold on
set(gcf,'WindowButtonDownfcn',[...
'temp=get(gca,''CurrentPoint'');',...
'plot(temp(2,1),temp(2,2),''x'');',...
'uicontrol(gcf,''Style'',''text'',''Position'',[100 20 30 16],',...
'''Backgroundcolor'',get(gca,''Color''),'...
'''Foregroundcolor'',''w'','...
'''String'',''x = '');'...
'uicontrol(gcf,''Style'',''text'',''Position'',[100 5 30 16],',...
'''Backgroundcolor'',get(gca,''Color''),'...
'''Foregroundcolor'',''w'','...
'''String'',''y = '');'...
'uicontrol(gcf,''Style'',''text'',''Position'',[125 20 80 16],',...
'''Backgroundcolor'',get(gca,''Color''),'...
'''Foregroundcolor'',''w'','...
'''String'',num2str(temp(2,1)));'...
'uicontrol(gcf,''Style'',''text'',''Position'',[125 5 80 16],',...
'''Backgroundcolor'',get(gca,''Color''),'...
'''Foregroundcolor'',''w'','...
'''String'',num2str(temp(2,2)));']);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -