summaryrefslogtreecommitdiff
path: root/src/demo.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/demo.js')
-rw-r--r--src/demo.js18
1 files changed, 0 insertions, 18 deletions
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);