📄 fsrgui.m
字号:
function fsrgui(mode)
%FSRGUI Graphical User Interface program for system response to periodic inputs.
% ADSP Toolbox: Version 2.0
% For use with "Analog and Digital Signal Processing", 2nd Ed.
% Published by PWS Publishing Co.
%
% Ashok Ambardar, EE Dept. MTU, Houghton, MI 49931, USA
% http://www.ee.mtu/faculty/akambard.html
% e-mail: akambard@mtu.edu
% Copyright (c) 1998
%v=matverch;
%if v<5,
%errordlg('This gui requires MATLAB 5.x and above','Version Error');
%return,
%end
if nargin == 0, mode = 0; end
if mode ~= 0,
f = gcf;
ui = get(f,'userdata');
filter_pop = ui(4);
n_edt = ui(6);
cutoff_edt = ui(9);
autoplot = ui(21);
plot_btn = ui(22);
sig_axs = ui(23);
opr_axs = ui(45);
curs_btn = ui(15);
curs_dsp = ui(11:14);
end
if mode == 0,
grey = [0.5,0.5,0.5];
ltgrey = grey*1.5;
dkgrey = grey*0.5;
scrn_size = get(0,'screensize');
fig_w = 620; fig_h = 450;
flft = (scrn_size(3) - fig_w)/2;
fbtm = (scrn_size(4) - fig_h)/2;
% ver_str = version;
ver4=0; %ver4 = length(findstr('4.',ver_str));
if ver4,
int_str = 'yes';
f = figure('pos',[flft,fbtm,fig_w,fig_h],'menubar','none',...
'name','Fourier Series Response','numbertitle','off',...
'resize','off','vis','off','interruptible',int_str,...
'color',dkgrey,'defaultaxesfontsize',10,...
'defaulttextfontsize',10);
else
int_str = 'on';
eval('f = colordef(''new'',''none'');');
set(f,'pos',[flft,fbtm,fig_w,fig_h],'menubar','none',...
'name','Fourier Series Response','numbertitle','off',...
'resize','off','vis','off','interruptible',int_str,...
'color',dkgrey,'defaultaxesfontsize',8,...
'defaultuicontrolback',[0.5,0.5,0.5],...
'defaulttextfontsize',8);
end
%%% OPTIONS:%
uim(1) = uimenu('label','OPTIONS');
uim(2) = uimenu(uim(1),'label','Help and Info','callback','fsrhlp');
uim(3) = uimenu(uim(1),'label','Export Data','separator','on',...
'callback','fsrgui(15)');
uim(4) = uimenu(uim(1),'label','Print Figure','separator','on',...
'callback','printdlg(gcf)');
uim(5) = uimenu(uim(1),'label','Close and Exit','separator','on',...
'callback','close(gcf)');
uim(6) = uimenu('label',' Axis Limits','separator','on',...
'callback','fsrgui(17)');
uim(7) = uimenu('label',' Zoom ON','separator','on',...
'callback','fsrgui(18)');
uim(8) = uimenu('label',' Zoom OFF','separator','on',...
'callback','fsrgui(19)');
uim(9) = uimenu('label',' RESIZE','callback','fsrgui(20)');
%%%%%%%%
lft = 10; btm = fig_h - 5;
ui(1) = uicontrol('style','frame','pos',[5,btm-142+22-22,175,140-22+22],...
'back',grey,'fore',ltgrey);
btm = btm - 26;
ui(2) = uicontrol('style','text','pos',[lft,btm,160,17],...
'horiz','left','fore','c','string','Periodic Pulse Input');
btm = btm - 22;
ui(3) = uicontrol('style','text','pos',[lft,btm,40,17],...
'string','Type','horiz','left');
ui(4) = uicontrol('style','popup','pos',[lft+45,btm,120,20],...
'string',['Rectangular|Sawtooth|Triangular|Trapezoidal|',...
'Sine Pulse|Exponential'],...
'back','w','callback','fsrgui(1)');
btm = btm - 22;
ui(50) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','Time Period');
ui(51) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','1','callback','fsrgui(3)');
btm = btm - 22;
ui(8) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','Pulse Width');
ui(9) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','0.5','callback','fsrgui(3)');
btm = btm - 22;
ui(33) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','Time Delay');
ui(34) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','0','callback','fsrgui(3)');
btm = btm - 22;
ui(35) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','Flat Width','vis','off');
ui(36) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','0.2','callback','fsrgui(3)','vis','off');
ui(37) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','Exponent','vis','off');
ui(38) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','-1','callback','fsrgui(3)','vis','off');
ui(39) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','# of cycles','vis','off');
ui(40) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','0.5','callback','fsrgui(3)','vis','off');
uicontrol('style','frame','pos',[5,btm-40+5,175,27],...
'back',grey,'fore',ltgrey);
btm = btm - 35+5;
ui(5) = uicontrol('style','text','pos',[lft,btm,100,17],...
'horiz','right','string','# of Harmonics');
ui(6) = uicontrol('style','edit','pos',[lft+105,btm,60,18],...
'back','w','string','25','callback','fsrgui(4)');
uicontrol('style','frame','pos',[5,btm-40+5,175,27],...
'back',grey,'fore',ltgrey);
btm = btm - 37+5;
uicontrol('style','text','pos',[lft,btm-2,60,20],...
'string','Counter');
ui(52) = uicontrol('style','push','pos',[lft+65,btm,50,20],...
'string','<<','callback','fsrgui(8)');
ui(53) = uicontrol('style','push','pos',[lft+115,btm,50,20],...
'string','>>','callback','fsrgui(9)');
btm = btm - 35+3;
ui(7) = uicontrol('style','frame','pos',[5,btm-130+55+25,175,120-20-25],...
'back',grey,'fore',ltgrey);
ui(16) = uicontrol('style','text','pos',[lft,btm,165,17],...
'string','System Transfer Function','horiz','left','fore','c');
btm = btm - 22;
ui(17) = uicontrol('style','text','pos',[lft,btm,30,17],...
'string','Num','horiz','left');
ui(18) = uicontrol('style','edit','pos',[lft+35,btm,130,18],...
'back','w','string','1','callback','fsrgui(3)');
btm = btm - 22;
ui(19) = uicontrol('style','text','pos',[lft,btm,30,17],...
'string','Den','horiz','left');
ui(26) = uicontrol('style','edit','pos',[lft+35,btm,130,18],...
'back','w','string','1 10','callback','fsrgui(3)');
ui(27) = uicontrol('style','push','pos',[lft+10,btm,70,20],...
'string','Accept','callback','fsrplt','vis','off');
ui(28) = uicontrol('style','push','pos',[lft+89,btm,70,20],...
'string','Reset','vis','off');
ui(20) = uicontrol('style','frame','pos',[5,btm-40+3,175,27],...
'back',grey,'fore',ltgrey);
btm = btm - 32;
ui(21) = uicontrol('style','check','pos',[lft,btm,80,17],...
'string','AutoPlot','callback','fsrgui(4)',...
'value',0);
ui(22) = uicontrol('style','push','pos',[lft+95,btm-2,70,20],...
'string','Plot','callback','fsrplt');
btm = btm -40+12+5-2;
uicontrol('style','frame','pos',[5,btm-10-2-50+25+3,175,27+50-25-3],...
'back',grey,'fore',ltgrey);
btm = btm - 8;
uicontrol('style','text','pos',[lft,btm,90,17],...
'string','Convergence','fore','c','horiz','left');
btm = btm - 20;
ui(41) = uicontrol('style','text','pos',[lft,btm,30,17],...
'string','Input');
ui(42) = uicontrol('style','text','pos',[lft+32,btm,40,17],...
'string','1/k','back',ltgrey);
ui(43) = uicontrol('style','text','pos',[lft+83,btm,40,17],...
'string','Output','horiz','right');
ui(44) = uicontrol('style','text','pos',[lft+125,btm,40,17],...
'string','1/k','back',ltgrey);
btm = btm -35;
ui(15) = uicontrol('style','check','pos',[lft+95,btm,70,20],...
'string','Cursor','back','y','callback','fsrgui(6)','userdata',0);
pos = get(f,'pos');
lef = pos(3)-166;
bot = pos(4)-21;
ui(11) = uicontrol('style','text','pos',[lef,bot,20,20],...
'string','X ','horiz','right');
ui(12) = uicontrol('style','text','pos',[lef+20,bot,60,20],...
'string','','back','w');
ui(13) = uicontrol('style','text','pos',[lef+85,bot,20,20],...
'string','Y ','horiz','right');
ui(14) = uicontrol('style','text','pos',[lef+105,bot,60,20],...
'string','','back','w');
set(ui(11:14),'vis','off');
ui(23) = axes('units','pixel','pos',[210,255,390,160],'box','on',...
'xgrid','on','ygrid','on','color','k');
% 'xgrid','on','ygrid','on','xlim',[0,1],'color','k');
title('Periodic and Reconstructed Input ');
xlabel('Time [s]');
ui(24) = line('xdata',0,'ydata',0,'color','y');
ui(25) = line('xdata',0,'ydata',0,'color','g');
ui(45) = axes('units','pixel','pos',[210,40,390,160],'box','on',...
'xgrid','on','ygrid','on','color','k');
% 'xgrid','on','ygrid','on','xlim',[0,1],'color','k');
title('Reconstructed Output ');
xlabel('Time [s]');
ui(46) = line('xdata',0,'ydata',0,'color','c');
set(f,'userdata',ui);
set(ui(7),'userdata',ui(23));
fsrplt;
drawnow;
set(f,'vis','on');
elseif mode == 1, % signal popup
signal_type = get(filter_pop,'value');
if signal_type == 4
set(ui(37:40),'vis','off');
set([ui(35),ui(36)],'vis','on');
elseif signal_type == 5
set(ui(35:38),'vis','off');
set([ui(39),ui(40)],'vis','on');
elseif signal_type == 6
set(ui(35:36),'vis','off');
set(ui(39:40),'vis','off');
set([ui(37),ui(38)],'vis','on');
else
set(ui(35:40),'vis','off');
end
if get(autoplot,'value'), fsrplt; end
elseif mode == 3, % edit fields
if get(autoplot,'value'), fsrplt; end
elseif mode == 4, % auto plot
if get(autoplot,'value'),
set(plot_btn,'enable','off');
fsrplt;
else
set(plot_btn,'enable','on');
end
elseif mode == 6, % cursor
if get(curs_btn,'value')
set(curs_dsp,'vis','on');
set(f,'WindowButtonMotionFcn','fsrgui(7)');
else
set(f,'Pointer','arrow','WindowButtonMotionFcn','');
set(curs_dsp,'vis','off')
set(curs_btn,'value',0),
end
elseif mode == 7, % cursor movement
h=gca;
set(f,'currentaxes',h);
lim=get(h,'pos'); % get current axis position
c_p = [lim(1) lim(1)+lim(3) lim(2) lim(2)+lim(4)];
f_p=get(f,'CurrentPoint'); % get co-ordinates of current point
if f_p(1) < c_p(1) | f_p(1) > c_p(2) | f_p(2) < c_p(3) | f_p(2) > c_p(4)
set(f,'Pointer','arrow');
set(curs_dsp(2),'string','');
set(curs_dsp(4),'string','');
else
curr_pt=get(h,'CurrentPoint'); % get current mouse position
set(f,'Pointer','crosshair');
set(curs_dsp(2),'string',num2str(curr_pt(1,1)));
set(curs_dsp(4),'string',num2str(curr_pt(1,2)));
end
elseif mode == 8,
k_str=get(ui(6),'string');
if isempty(k_str),
k_val=0;
else
k_val= eval(['[',k_str,']'],[]);
if isempty(k_val),
errordlg('Matlab syntax error.','Input Error');
return
end
if rem(k_val,1)|k_val<0,
errordlg('# of harmonics must be an integer.','Input Error');
return
end
end
k_val=k_val-1;if k_val<0,k_val=0;end
k_str=int2str(k_val);
set(ui(6),'string',k_str);
fsrplt;
elseif mode == 9,
k_str=get(ui(6),'string');
if isempty(k_str),
k_val=0;
else
k_val= eval(['[',k_str,']'],[]);
if isempty(k_val),
errordlg('Matlab syntax error.','Input Error');
return
end
if rem(k_val,1)|k_val<0,
errordlg('# of harmonics must be an integer.','Input Error');
return
end
end
k_str=int2str(k_val+1);
set(ui(6),'string',k_str);
fsrplt;
elseif mode == 15, %Export data
fsrplt;
str1='Export original input as';
str2='Export reconstructed input as';
str3='Export reconstructed output as';
str4='Export time index as';
exp_str={str1,str2,str3,str4};
exp_var={'xinper','xinrec','yrec','timeind'};
expect=inputdlg(exp_str,'Save Variables as',1,exp_var);
if ~isempty(expect)
xd=get(ui(11),'userdata');%%% FIX FOR UIs
if ~isempty(expect{1}),assignin('base',expect{1},xd(:,1));end
if ~isempty(expect{2}),assignin('base',expect{2},xd(:,2));end
if ~isempty(expect{3}),assignin('base',expect{3},xd(:,3));end
if ~isempty(expect{4}),assignin('base',expect{4},xd(:,4));end
end
elseif mode == 16, % Axis Control Help
msgbox([' First click in a plot window. ',...
' Then, come back and execute'],...
'Axis Control Info','help')
elseif mode == 17, % Axis Control
cur_axs=[]; cur_obj = gco;
cur_par = get(cur_obj,'parent');
if ~isempty(cur_par)
if cur_par == f,
cur_axs = cur_obj;
else
cur_axs = cur_par;
end
end
if isempty(cur_axs),fsrgui(16);
else
set(curs_btn,'value',0);
fsrgui(6); %%% REPLACE number BY CURSOR MODE
if any(cur_axs==ui([23,45])),%%%% CHANGE UI numbers
if cur_axs==ui(23),txt='Reconstructed input';%%%% CHANGE UI numbers
elseif cur_axs==ui(45),txt='Reconstructed output';%%%% CHANGE UI numbers
end
axlimdlg(txt,[1 1]); %[1 1]=auto +linear/log, [1 0]=auto, no linear/log
else
fsrgui(16);
end
end
elseif mode == 18, % zoom on
set(curs_btn,'value',0);
fsrgui(6); %%% REPLACE number BY CURSOR MODE
if get(ui(15),'userdata')==0
zoom on
set(ui(15),'userdata',1);
else
msgbox('Zoom is already ON.','Zoom Info','help')
end
elseif mode == 19, % zoom off
set(curs_btn,'value',0);
fsrgui(6); %%% REPLACE number BY CURSOR MODE
if get(ui(15),'userdata')==1
set(f,'currentaxes',ui(23));
zoom out,zoom reset,zoom off
set(f,'currentaxes',ui(45));
zoom out,zoom reset,zoom off
set(ui(15),'userdata',0);
else
msgbox('Zoom is already OFF.','Zoom Info','help')
end
elseif mode == 20, % mouse functionality
cur_axs = []; cur_obj = gco;
cur_par = get(cur_obj,'parent');
if ~isempty(cur_par)
if cur_par == f,
cur_axs = cur_obj;
else
cur_axs = cur_par;
end
end
if isempty(cur_axs),fsrgui(16);return,end
if any(cur_axs == [sig_axs,opr_axs]),
axes(cur_axs);
axs_pos = get(cur_axs,'pos');
if axs_pos(4) == 160, % need to maximize
set([sig_axs,opr_axs],'vis','off');
set(cur_axs,'pos',[210,40,390,370],'vis','on');
else % minimization
set(sig_axs,'pos',[210,255,390,160],'vis','on');
set(opr_axs,'pos',[210,40,390,160],'vis','on');
end
else
fsrgui(16);
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -