From 712fc09f9cf2c3a657f5d94cb0748334d9fc587e Mon Sep 17 00:00:00 2001 From: TinWoodman92 Date: Thu, 8 Feb 2024 19:59:21 -0600 Subject: Initial commit - setup --- src/demo.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/demo.js (limited to 'src/demo.js') diff --git a/src/demo.js b/src/demo.js deleted file mode 100644 index 75fa61a..0000000 --- a/src/demo.js +++ /dev/null @@ -1,18 +0,0 @@ -console.log('Hello from demo.js'); - -let v0 = []; -let v1 = [1, 2, 3, 4]; -let v2 = [5, 6, 7, 8]; - -v0 = [v1, v2] - -v0 = math.matrix(v0); -v1 = math.matrix(v1); -v2 = math.matrix(v2); - -v1 = math.transpose(v1); -v2 = math.transpose(v2); - -let v3 = math.concat(v1, v2, 0); - -console.log(v3); -- cgit v1.2.3