From cbcb6aeb1510ee1bd2d67d9d0b285df67f7088b5 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sat, 5 Oct 2019 17:59:32 +0200 Subject: New matrix data model (breaks everything) --- test/matrix_example.cpp | 22 ---------------------- 1 file changed, 22 deletions(-) (limited to 'test/matrix_example.cpp') diff --git a/test/matrix_example.cpp b/test/matrix_example.cpp index a3f0eac..96ba67d 100644 --- a/test/matrix_example.cpp +++ b/test/matrix_example.cpp @@ -32,27 +32,5 @@ int main(int argc, char *argv[]) { std::cout << "a.td() = \n" << a.t(); // or a.trasposed(); std::cout << std::endl; - // square matrix - mm::square_matrix, 2> f {{{2, 3}, {1, 4}}, {{6, 1}, {-3, 4}}}; - - std::cout << "Square matrix" << std::endl; - std::cout << "f = \n" << f; - - std::cout << "tr(f) = " << f.tr(); //or f.trace() << std::endl; - - auto ft = f.t(); - std::cout << "after in place transpose f.t(), f = \n" << ft; - std::cout << std::endl; - - auto identity = mm::square_matrix::identity(); - - std::cout << "Identity matrix" << std::endl; - std::cout << "I = \n" << identity; - std::cout << std::endl; - - // vector - - // - return 0; } -- cgit v1.2.1