Initial push

This commit is contained in:
ti_mo
2026-04-23 21:34:07 +02:00
commit 7c91ba9129
3 changed files with 184 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
A = [1 2 3 4;
4 3 2 1;
3 1 4 2;
2 3 4 1];
x = A.*A;
normalize(A);
normalize(inv(A));
norm(A);
norm(inv(A));
B = {1 2 4};
C = {4 3 5};
y = -1:0.2:1;
z = 1:1:3;
M = repmat(z, [5 1])
M = reshape(M, [size(M) 1])