第一次线代上机:
作业一:
1、A=rand(5);
B=rand(5);
C=rand(5);
b=rand(5,1);
A+B
A-B
A*B+B*A
det(A)
det(B)
inv(A)
inv(B)
rank(A)
rank(B)
det(A*B)
inv(A*B)
rank(A*B)
if det(A*B)==det(A)*det(B)
true
else
disp('false')
end
if (A*B)'==B'*A'
disp('true')
else
disp('false')
end
if inv(A*B)==inv(B)*inv(A)
disp('true')
else
disp('false')
end
if A*B~=B*A
disp('true')
else
disp('false')
end
X=inv(A)*C*inv(B)
ans =
1.5725 0.8036 0.9811 0.5806 1.1455
1.6489 0.3103 1.6654 0.8033 0.4813
0.5192 0.8238 1.2743 1.6813 1.4954