School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,18 @@
#A=[1 2 3; 4 5 6; 7 8 9];
#x=1:2:10;
#A(1:2,2:3);
#x+2;
#3*x;
#x.^2;
#B=[5 4 3; 8 2 1; 1 5 5];
#A*B;
#B*A;
A=[1 0 -2; 2 1 3; 0 1 0];
B=[2 1 1; 1 0 -1;1 1 0];
C=A-B
D=A*B
E=A.*B
x=0:0.01:3;
plot(x, x.^5/10,"k:",x,x.*sin(x),"r--",x,cos(x),"b")