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

📄 calldit.m

📁 MyGui.rar
💻 M
字号:
function calledit(hedit,hpush);
loadpath=get(hedit,'string');
if ~isempty(loadpath)    
strLocalPath = loadpath;
for ii = 1: 1: iNumOfChannel
    AmpC(ii, :) = load(sprintf('%s\\%d\\Mark2Amp.txt', strLocalPath, ii));
    PhaC(ii, :) = load(sprintf('%s\\%d\\Mark2Phas.txt', strLocalPath, ii));
end
   
for ii = 1: 1: iNumOfChannel
    title('幅度');
    plot(AmpC(ii, :));
    hold all;
end
figure(3);
for ii = 1: 1: iNumOfChannel
    title('相位');
    plot(PhaC(ii, :));
    hold all;
end
end

⌨️ 快捷键说明

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