Вы находитесь на странице: 1из 2

Inv(A) =

-0.5714 -0.5238
0.2857

Inv(B) =

0.9048

0.4286 -0.2857

-0.4286 -0.1429

0.4286

-0.2500 -2.3750

3.2500

0.2500

0.8750 -1.2500

-0.1250

0.0625

0.1250

Det(A) = 21; det(B) = 16


A+ B =

C=

10

-3

10

-23
23
1

The significant of 12 is the maximum value of y


And 6.28 is 2 so it means that the period of y is 1s.
m file:
A = [ 3 2 -5; 0 3 2; 3 3 -2];
B = [ 3 8 2; 2 6 8; 2 5 6];
inv(A);
inv(B);
det(A);
det(B);
A+B;
C = A*[2;3;7];
x= -5:0.1:5;
y= 12*sin(6.28*x);
plot(x,y,LineWidth,1.5)
xlabel('x','FontSize',15,'FontName', 'Times') % default 10- Helvetical
ylabel('y','FontSize',15,'FontName', 'Times') % default 10- Helvetical
grid

15

10

-5

-10

-15
-5

-4

-3

-2

-1

Вам также может понравиться