1. 先求下列表达式的值,然后显示MATLAB工作空间的使用情况并保存全部变量。
(1)
(2) ,其中
(3)
(4) ,其中t=0::
解:
M文件:
z1=2*sin(85*pi/180)/(1+exp(2))
x=[2 1+2*i; 5];
z2=1/2*log(x+sqrt(1+x^2))
      a=::;
z3=(exp.*a)-exp.*a))./2.*sin(a++log(+a)./2)
t=0::;
z4=(t>=0&t<1).*(t.^2)+(t>=1&t<2).*(t.^2-1)+(t>=2&t<3) .*(t.^2-2*t+1)
运算结果:
z1=2*sin(85*pi/180)/(1+exp(2))
x=[2 1+2*i; 5];
z2=1/2*log(x+sqrt(1+x^2))
      a=::;
z3=(exp.*a)-exp.*a))./2.*sin(a++log(+a)./2)
t=0::;
z4=(t>=0&t<1).*(t.^2)+(t>=1&t<2).*(t.^2-1)+(t>=2&t<3) .*(t.^2-2*t+1)
z1 =
   
z2 =
    -    +
    +    -
z3 =
  Columns 1 through 4
    +    +    +    +
  Columns 5 through 8
    +    +    +    +
  Columns 9 through 12
    +    +    +    +
  Columns 13 through 16
    +    +    +    +
  Columns 17 through 20
  +    +    +    +
  Columns 21 through 24
  +    +    +    +
  Columns 25 through 28
  +    +    +           
  Columns 29 through 32
                                               
  Columns 33 through 36
                                               
  Columns 37 through 40
                                               
  Columns 41 through 44
                                                 
  Columns 45 through 48
                                                   
  Columns 49 through 52
                                                   
  Columns 53 through 56
                                                   
  Columns 57 through 60
                                                   
  Column 61
           
matlab定义函数表达式
z4 =
        0            0           
2. 已知:
求下列表达式的值:
(1) A+6*B和A-B+I(其中I为单位矩阵)
(2) A*B和A.*B
(3) A^3和A.^3
(4) A/B及B\A
(5) [A,B]和[A([1,3],:);B^2]
解:   
M 文件:
A=[12 34 -4;34 7 87;3 65 7];B=[1 3 -1;2 0 3;3 -2 7];
A+6.*B
A-B+eye(3)
A*B
A.*B
A^3
A.^3
A/B
B\A
[A,B]
[A([1,3],:);B^2]
运算结果:
A=[12 34 -4;34 7 87;3 65 7];B=[1 3 -1;2 0 3;3 -2 7];
A+6.*B
A-B+eye(3)
A*B
A.*B
A^3
A.^3
A/B
B\A
[A,B]
[A([1,3],:);B^2]
ans =
    18    52  -10
    46    7  105
    21    53    49
ans =
    12    31    -3
    32    8    84
    0    67    1
ans =
    68    44    62
  309  -72  596
  154    -5  241
ans =
    12  102    4
    68    0  261
    9  -130    49
ans =
      37226      233824      48604
      247370      149188      600766
      78688      454142      118820
ans =
        1728      39304        -64
      39304        343      658503
          27      274625        343
ans =
       
       
     
ans =
   
     
     
ans =
    12    34    -4    1    3    -1
    34    7    87    2    0    3
    3    65    7    3    -2    7
ans =
    12    34    -4
    3    65    7
    4    5    1
    11    0    19
    20    -5    40
3. 设有矩阵A和B

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。