matlab源代码

源代码在线查看: dispdlg.m

软件大小: 1823 K
上传用户: dragoncircle
关键词: matlab 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				function dispdlg(txt)
				% Generalization of disp function; text is written to screen if 
				% S4M.interactive  == 0 and written to a dialog box if S4M.interactive  == 1
				% Written by: E. R.: April 20, 2004
				% Last updated:
				%
				%          dispdlg(txt)
				% INPUT
				% txt      Text to display
				%
				global S4M
				  
				if S4M.interactive
				   msgdlg(txt)
				else
				   disp(txt)
				end
				
							

相关资源