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

📄 fftcord.m

📁 德国人开发的地震处理分析软件
💻 M
字号:
function fftcord

global fftcordaxes;
global CordfftX;
global CordfftY;
global fftaxes;
global fftfig;

figure(fftfig);
%axes(fftaxes);
%hold on;
%plot(CordfftX, CordfftY, 'k+');

[CordfftX,CordfftY] = ginput(1);
%plot(CordfftX, CordfftY, 'r+');
CordfftXY = ['X= ' num2str(CordfftX) '  Y= ' num2str(CordfftY)];

axes(fftcordaxes);hold off;
fill([0 0 1 1 0],[0 1 1 0 0],'k');
axis('off')
text('Position',[0.0 0.0],'Units','normalized','Color','w','String',CordfftXY(1,:));
axes(fftaxes);
hold off;

⌨️ 快捷键说明

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