summaryrefslogtreecommitdiffstats
path: root/test/matrix_example.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrix_example.cpp')
-rw-r--r--test/matrix_example.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/matrix_example.cpp b/test/matrix_example.cpp
index a835ee0..a3f0eac 100644
--- a/test/matrix_example.cpp
+++ b/test/matrix_example.cpp
@@ -32,7 +32,7 @@ int main(int argc, char *argv[]) {
std::cout << "a.td() = \n" << a.t(); // or a.trasposed();
std::cout << std::endl;
- // special matrices
+ // square matrix
mm::square_matrix<std::complex<int>, 2> f {{{2, 3}, {1, 4}}, {{6, 1}, {-3, 4}}};
std::cout << "Square matrix" << std::endl;
@@ -50,5 +50,9 @@ int main(int argc, char *argv[]) {
std::cout << "I = \n" << identity;
std::cout << std::endl;
+ // vector
+
+ //
+
return 0;
}