From 2d097701bd38123d67749b906db4437431baf2e1 Mon Sep 17 00:00:00 2001 From: Quinn Henthorne Date: Fri, 13 Dec 2024 11:12:14 -0500 Subject: [PATCH] Added some TODOs for additional matrix functions --- Matrix.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Matrix.hpp b/Matrix.hpp index 1d86828..d70b892 100644 --- a/Matrix.hpp +++ b/Matrix.hpp @@ -6,6 +6,11 @@ #include #include +// TODO: Add a function to calculate eigenvalues/vectors +// TODO: Add a function to compute RREF +// TODO: Add a function for SVD decomposition +// TODO: Add a function for LQ decomposition + template class Matrix { public: /**