MATLAB 7简介 02、MATLAB 7的安装 03、基本使用方法 04、数值向量和数组 05、字符串、单元数组和结构 06、数值计算功能 07、符号运算 08、图形处理 09、G

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

软件大小: 1339 K
上传用户: zyz5925629
关键词: MATLAB 数组 数值 向量
下载地址: 免注册下载 普通下载 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.
				>>
							

相关资源