From 2497fd9e7a0fae5ee4887890d7a312e0e08a93b8 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 22 Jun 2015 19:01:29 +0800 Subject: major change: use luarocks to manage project --- examples/mmatrix_example.lua | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 examples/mmatrix_example.lua (limited to 'examples/mmatrix_example.lua') diff --git a/examples/mmatrix_example.lua b/examples/mmatrix_example.lua deleted file mode 100644 index 8ddfe84..0000000 --- a/examples/mmatrix_example.lua +++ /dev/null @@ -1,20 +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("test fm:get_dataref_value:", fm:get_dataref_value()) -print("forced a garbade collect") -collectgarbage("collect") -print("test fm:get_dataref_value:", fm:get_dataref_value()) -print(fm) --- print(fm:softmax()) -print(dm) --- print(dm:softmax()) -- cgit v1.2.3