aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrix_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrix_test.cpp')
-rw-r--r--test/matrix_test.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/matrix_test.cpp b/test/matrix_test.cpp
new file mode 100644
index 00000000..8f09ad38
--- /dev/null
+++ b/test/matrix_test.cpp
@@ -0,0 +1,13 @@
+#include "Math/matrix.hpp"
+
+#include <iostream>
+
+int main()
+{
+ yage::Matrix<double, 10, 10> matrix;
+
+ int x=matrix.get(5, 2);
+
+ std::cout<<"at: "<<x<<'\n';
+ return 0;
+}