From 08a187770961a487e935ea6c65a17f511ea3d954 Mon Sep 17 00:00:00 2001 From: Micke Nordin Date: Tue, 26 Jul 2022 15:19:57 +0200 Subject: [PATCH] rename rotate --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 67a57cb..733fc0b 100644 --- a/main.cpp +++ b/main.cpp @@ -80,8 +80,8 @@ void matrix_main() { std::cout << m.determinant() << std::endl; std::cout << "The matrix n:" << std::endl; std::cout << n << std::endl; - std::cout << "The matrix n roted by one pi radian:" << std::endl; - std::cout << n.rotate_by_one_pi() << std::endl; + std::cout << "The matrix n roted:" << std::endl; + std::cout << n.rotate() << std::endl; std::cout << "The determinant of matrix n:" << std::endl; std::cout << n.determinant() << std::endl; std::cout << "The matrix n's transpose:" << std::endl;