aboutsummaryrefslogtreecommitdiff
path: root/mmatrix_example.lua
diff options
context:
space:
mode:
Diffstat (limited to 'mmatrix_example.lua')
-rw-r--r--mmatrix_example.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/mmatrix_example.lua b/mmatrix_example.lua
index 39cd28e..679fde3 100644
--- a/mmatrix_example.lua
+++ b/mmatrix_example.lua
@@ -1,7 +1,7 @@
m = 10
n = 10
-fm = nerv.FloatMMatrix(m, n)
-dm = nerv.DoubleMMatrix(m, n)
+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)