wait_message.m

来自「这是一个用于语音信号处理的工具箱」· M 代码 · 共 26 行

M
26
字号
function   [notisldr,noteh]= Wait_message(ns)


%Callback function to display the progress of glottal area calculation
%Author Chiang-Jang Wu
%Modified by Karthik
%modified by D. G. Childers 5/20/98



noteh=figure('NumberTitle','off','Position',[50 200 700 200],...

  'Color',[0 0 0 ],'Name','Program under Progress');



notisldr=uicontrol('Style','slider',...

   'Position',[50 100 600 50], ...

   'HorizontalAlignment','left','Value',[ns]);

Wait_message = uicontrol('Style','Text',...
   'Position',[100 50 500 20],...
   'BackgroundColor',[1 1 1],...
   'ForegroundColor','blue',...
   'String','This program is under progress.Please wait until it finishes.');

               
               





⌨️ 快捷键说明

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