summaryrefslogtreecommitdiff
path: root/apps/examples/bastest/tests/test27.bas
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/bastest/tests/test27.bas')
-rw-r--r--apps/examples/bastest/tests/test27.bas8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/examples/bastest/tests/test27.bas b/apps/examples/bastest/tests/test27.bas
new file mode 100644
index 000000000..92ba744a8
--- /dev/null
+++ b/apps/examples/bastest/tests/test27.bas
@@ -0,0 +1,8 @@
+data 1,2,3,4
+mat read a(2,2)
+mat print a
+mat b=inv(a)
+mat print b
+mat c=a*b
+mat print c
+