aboutsummaryrefslogtreecommitdiff
path: root/mmatrix_example.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mmatrix_example.lua')
-rw-r--r--mmatrix_example.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/mmatrix_example.lua b/mmatrix_example.lua
deleted file mode 100644
index 679fde3..0000000
--- a/mmatrix_example.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-m = 10
-n = 10
-fm = nerv.MMatrixFloat(m, n)
-dm = nerv.MMatrixDouble(m, n)
-for i = 0, m - 1 do
- for j = 0, n - 1 do
- -- local t = math.random(10)
- t = i / (j + 1)
- fm[i][j] = t
- dm[i][j] = t
- end
-end
-print(fm)
--- print(fm:softmax())
-print(dm)
--- print(dm:softmax())