ImageVerifierCode 换一换
格式:DOC , 页数:28 ,大小:124.46KB ,
资源ID:1116180      下载积分:5 文钱
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,省得不是一点点
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.wenke99.com/d-1116180.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: QQ登录   微博登录 

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(《MATLAB程序设计与应用》刘卫国高等教育出版社-第2章课后答案.doc)为本站会员(h****)主动上传,文客久久仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知文客久久(发送邮件至hr@wenke99.com或直接QQ联系客服),我们立即给予删除!

《MATLAB程序设计与应用》刘卫国高等教育出版社-第2章课后答案.doc

1、1第二章3. 写出完成下列操作的命令假设:A=rand(5,5) B=A(2:5,1,3,5) A(7)= A+30 size(A), ndims(A) t=0:0.1:1,t(find(t=0)=eps x=1:12, reshape(x,3,4) abs(b) char(89) 4.下列命令执行后,L1,L2,L3,L4 的值分别是多少A=1:9;B=10-A;L1=A=B;L2=A3 L1L2L3L4 L1 =0 0 0 0 1 0 0 0 0L2 =1 1 1 1 1 0 0 0 0L3 =0 0 0 1 1 1 0 0 0L4 =4 5 6 5.A=23 10 -0.778 0;41

2、 -45 65 5;32 5 0 32;6 -9.54 54 3.14;B=A(1:3,:)C=A(:,1:2)D=A(2:end,3:end)2E=B*C B =23.0000 10.0000 -0.7780 041.0000 -45.0000 65.0000 5.000032.0000 5.0000 0 32.0000C =23.0000 10.000041.0000 -45.000032.0000 5.00006.0000 -9.5400D =65.0000 5.00000 32.000054.0000 3.1400E =1.0e+003 *0.9141 -0.22391.2080 2.

3、71231.1330 -0.2103 6.A=34,NaN,Inf,-Inf,-pi,eps,0all(A) A =34.0000 NaN Inf -Inf -3.1416 0.0000 0ans =0 any(A) ans =1 isnan(A) ans =0 1 0 0 0 0 0 3isinf(A) ans =0 0 1 1 0 0 0 isfinite(A) ans =1 0 0 0 1 1 1 7.student(1).number=123;student(1).name=lili; student(1).specialty=computer; student(1).grade=87

4、 68 70 70 97 95;student(2).number=123;student(2).name=lili; student(2).specialty=computer; student(2).grade=87 68 70 70 97 95;student(3).number=123;student(3).name=lili; student(3).specialty=computer;student(3).grade=87 68 70 70 97 95;student(4).number=123;student(4).name=lili; student(4).specialty=

5、computer; student(4).grade=87 68 70 70 97 95;student(5).number=123;student(5).name=lili; student(5).specialty=computer; student(5).grade=87 68 70 70 97 95; student student = 1x5 struct array with fields:numbernamespecialtygrade 8.B=1,Brenden;reshape(1:9,3,3),12,34,2;54,21,3;4,23,67 B = 1 Brenden 3x3

6、 double 3x3 cell 4size(B) ans =2 2 ndims(B) ans =2 B(2) ans = 3x3 double B(4) ans = 3x3 cell B(3)= B = 1 3x3 double 3x3 cell B3= B = 1 3x3 double B(2) ans = 3x3 double B2 ans =1 4 72 5 83 6 9 5第三章1.(1)eye(3) ans =1 0 00 1 00 0 1 (2)A=round(rand(5,6)*100+100) A =142 146 130 155 138 192186 145 105 140

7、 101 184149 141 169 120 142 137182 190 165 163 175 162146 101 198 173 179 173 randn(1,500)*0.2+1 ones(size(A) ans =1 1 1 1 1 11 1 1 1 1 11 1 1 1 1 11 1 1 1 1 11 1 1 1 1 1 C=diag(30 30 30 30 30 30)C(1:5,:)+A a=diag(A)B=diag(a) a =1421451691636179B =142 0 0 0 00 145 0 0 00 0 169 0 00 0 0 163 00 0 0 0

8、179 2.使用函数,实现方阵左旋 90 或右旋 90 的功能A=1 4 7 10;2 5 8 11;3 6 9 12;B=rot90(A,1) B =10 11 127 8 94 5 61 2 3 C=rot90(A,3) C =3 2 16 5 49 8 712 11 10 3.A=rand(3);B=inv(A) B =-0.3872 1.2413 -0.0844-5.1444 -5.1549 9.94674.6429 3.2377 -6.7282 det(A) ans =0.0782 A*B ans =1.0000 -0.0000 0.00007-0.0000 1.0000 0.000

9、0-0.0000 -0.0000 1.0000 B*A ans =1.0000 0.0000 0.00000.0000 1.0000 -0.0000-0.0000 0.0000 1.0000 4.A=4 2 -1;3 -1 2;12 3 0;b=2 10 8;x=Ab x =-6.000026.666727.3333 或者用x=inv(A)*b x =-6.000026.666727.3333 5.A=1 -1 2 3;5 1 -4 2;3 0 5 2;11 15 0 9diag(A) A =1 -1 2 35 1 -4 23 0 5 211 15 0 9ans =1159 triu(A) 8

10、ans =1 -1 2 30 1 -4 20 0 5 20 0 0 9 tril(A) ans =1 0 0 05 1 0 03 0 5 011 15 0 9 rank(A) ans =4 norm(A) ans =21.3005 norm(A,1) ans =20 norm(A,inf) ans =35 cond(A) ans =11.1739 cond(A,1) ans =14.4531 9cond(A,inf) ans =22.0938 trace(A) ans =16 B=0.43 43 2;-8.9 4 21 B =0.4300 43.0000 2.0000-8.9000 4.000

11、0 21.0000 diag(B) ans =0.43004.0000 triu(B) ans =0.4300 43.0000 2.00000 4.0000 21.0000 tril(B) ans =0.4300 0 0-8.9000 4.0000 0 rank(B) ans =2 norm(B) ans =1043.4271 norm(B,1) ans =47 norm(B,inf) ans =45.4300 cond(B) ans =1.9354 trace(B) ans =4.4300 6.A=1 1 0.5;1 1 0.25;0.5 0.25 2 A =1.0000 1.0000 0.50001.0000 1.0000 0.25000.5000 0.2500 2.0000 V,D=eig(A) V =0.7212 0.4443 0.5315-0.6863 0.5621 0.4615-0.0937 -0.6976 0.7103D =-0.0166 0 00 1.4801 00 0 2.5365

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。