aboutsummaryrefslogtreecommitdiff
path: root/matrix
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-05-15 02:47:53 +0800
committerDeterminant <ted.sybil@gmail.com>2015-05-15 02:47:53 +0800
commitb0c999e1a840bda032b7616dd1cc45261610e73c (patch)
tree1e87afd00872c000248d895e8e629b4fa6172c79 /matrix
parentefb786d716363dde8f90ef0672f479790befc79c (diff)
use a global lua file to load others
Diffstat (limited to 'matrix')
-rw-r--r--matrix/matrix.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/matrix/matrix.lua b/matrix/matrix.lua
index 7aa1f12..b9e4876 100644
--- a/matrix/matrix.lua
+++ b/matrix/matrix.lua
@@ -4,7 +4,9 @@ function nerv.FloatMatrix:__tostring__()
local i = 0
local strt = {}
for row = 0, nrow - 1 do
+-- local rp = self[row]
for col = 0, ncol - 1 do
+-- table.insert(strt, string.format("%f ", rp[col]))
table.insert(strt, string.format("%f ", self:get_elem(i)))
i = i + 1
end