www.gusucode.com > 利用MATLAB GUI设计滤波器界面,可以设计IIR滤波器 > AFD/MenuHelpAbout.m

    function MenuHelpAbout
% MenuHelpAbout is a subfile of the AnalogFilter GUI collection
%
% James C. Squire, 2005
% Assistant Professor, Virginia Military Institute
% ver 1.2

% MenuHelpAbout provides simple help information

% load icon
t=load('Utility_HelpIcon.mat');
x = t.x;
map = t.map;

% create help text
text{1} = '\fontsize{12}\fontname{Arial}\bf';
text{2} = '   Analog Filter Designer';
text{3} = '\fontsize{8}\rm';
text{4} = '                    ver 1.0';
text{5} = ' ';
text{6} = '                James C. Squire';
text{7} = '       Assistant Professor';
text{8} = '          Virginia Military Institute';

%create help popup window
strOptions.WindowStyle='modal';
strOptions.Interpreter='tex';
msgbox(text,'Help','custom',x,map,strOptions)