from
FeatureFinder 2.4.1
by Feature Finder A user-friendly tool for signal filtering and feature extraction. Well-suited to large data sets!
Comm_Help(sTitle,sMessage)
% Comm_Help(MSG)
% This function displays MSG to the user in a help dialog box.
%
% Input arguments:
% MSG - the message string
%
% Output arguments;
% none
%
% Written by Alex Andrews, 2010-2012.
function Comm_Help(sTitle,sMessage)
%Util_PreventInput(false);
h=msgbox(sMessage,sTitle,'help','modal');
waitfor(h);