aboutsummaryrefslogtreecommitdiff
path: root/matrix/matrix.lua
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/matrix.lua')
-rw-r--r--matrix/matrix.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/matrix/matrix.lua b/matrix/matrix.lua
new file mode 100644
index 0000000..7aa1f12
--- /dev/null
+++ b/matrix/matrix.lua
@@ -0,0 +1,15 @@
+function nerv.FloatMatrix:__tostring__()
+ local ncol = self:ncol()
+ local nrow = self:nrow()
+ local i = 0
+ local strt = {}
+ for row = 0, nrow - 1 do
+ for col = 0, ncol - 1 do
+ table.insert(strt, string.format("%f ", self:get_elem(i)))
+ i = i + 1
+ end
+ table.insert(strt, "\n")
+ end
+ table.insert(strt, string.format("[Float Matrix %d x %d]", nrow, ncol))
+ return table.concat(strt)
+end