基本信息
文件名称:《MATLAB基础教程(第六版)(微课版)》习题答案 薛山 -第1--6章.doc
文件大小:118.94 KB
总页数:11 页
更新时间:2025-02-07
总字数:约4.69千字
文档摘要

?PAGE29?

附录各章习题参考答案

附录各章习题参考答案

第1章习题参考答案

1.答:略。

2.答:略。

3.答:略。

4.答:略。

5.答:略。

第2章习题参考答案

1.答:

(1)

a=87

a=

87

b=190

b=

190

a+b

ans=

277

a-b

ans=

-103

a*b

ans=

16530

(2)

c=uint8(87)

c=

87

d=uint8(190)

d=

190

c+d

ans=

255

c-d

ans=

0

c*d

ans=

255

2.答:

(1)

sind(60)

ans=

0.8660

(2)

exp(3)

ans=

20.0855

(3)

cos(3*pi/4)

ans=

-0.7071

3.答:

(1)

u=2;

v=3;

4*u*v/log(v)

ans=

21.8457

(2)

(exp(u)+v)^2/(v^2-u)

ans=

15.4189

(3)

sqrt(u-3*v)/(u*v)

ans=

0+0.4410i

4.答:

(1)

(3-5*i)*(4+2*i)

ans=

22.0000-14.0000i

(2)

sin(2-8*i)

ans=

1.3553e+03+6.2026e+02i

5.答:

(1)

420

ans=

1

(2)

4=20

ans=

1

(3)

4==20

ans=

0

(4)

4~=20

ans=

1

(5)

bB

ans=

0

6.答:

(1)

a=39;

b=58;

c=3;

d=7;

ab

ans=

0

(2)

ac

ans=

0

(3)

abbc

ans=

0

(4)

a==d

ans=

0

(5)

a|bc

ans=

1

(6)

~~d

ans=

1

7.脚本文件内容为:

disp(sin(60)=);

disp(sind(60));

disp(exp(3)=);

disp(exp(3));

disp(cos(3*pi/4)=);

disp(cos(3*pi/4));

8.脚本文件内容为:

a=39;

b=58;

c=3;

d=7;

disp(ab),disp(ab);

disp(ac),disp(ac);

disp(abbc),disp(abbc)

disp(a==d),disp(a==d);

disp(a|bc),disp(a|bc);

disp(~~d),disp(~~d);

第3章习题参考答案

1.答:

y=2

2.参考答案略。

3.参考答案略。

第4章习题参考答案

1.编写脚本文件,文件内容为:

%Interpolationusingthefourmethods

x=[11.11.21.31.4];

y=[1.000001.233681.552711.993722.61170];

length_of_x=length(x);

scalar_x=x(1):0.05:x(length_of_x);

length_of_sx=length(scalar_x);

y_nearest=zeros(length(scalar_x),1);

y_linear=zeros(length(scalar_x),1);

y_spline=zeros(length(scalar_x),1);

y_pchip=zeros(length(scalar_x),1);

fori=1:length_of_sx

y_nearest(i)=interp1(x,y,scalar_x(i),nearest);

y_linear(i)=interp1(x,y,scalar_x(i),linear);

y_spline(i)=interp1(x,y,scalar_x(i),spline);

y_pchip(i)=interp1(x,y,scalar_x(i),pchip);

end

subplot(2,2,1),plot(x,y,*),holdon,plot(scalar_x,y_nearest),title(method=nearest);

subplot(2,2,2),plot(x,y,*),holdon,plo