清华大学出版社的《matlab7简明教程》的电子教案

源代码在线查看: 10-11.txt

软件大小: 1196 K
上传用户: huanghuanl
关键词: matlab7 清华大学 出版社 简明教程
下载地址: 免注册下载 普通下载 VIP

相关代码

				%例10-11  try-catch模块的应用举例。
				
				>> X=magic(4);
				>> Y=ones(4,3);
				>> try
				        Z=X*Y
				catch
				      Z=nan;
				  disp('X and Y is not conformable.')
				end
				>>Z
				>> X=magic(4);
				>> Y=ones(3,3);
				>> try
				  Z=X*Y
				catch
				disp('Xand Y is not conformable.')
				end
				X and Y is not conformable.
				>>
							

相关资源