aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrix_test.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-05-26 23:43:10 +0100
commit4c16cca26bdae09525c04665b536da98beb4c76f (patch)
tree0a3ba29199ed13aaf34b8e624da08719793d1df4 /test/matrix_test.cpp
parent89c11e6679346e77ee32eb1343d3cf4e7d429a46 (diff)
downloadYAGE-4c16cca26bdae09525c04665b536da98beb4c76f.tar.gz
YAGE-4c16cca26bdae09525c04665b536da98beb4c76f.zip
Creating matrix
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;
+}