1
0
forked from leto/LeMA

Added some cool comments and deleted a stupid one

This commit is contained in:
gitea_admin 2024-12-27 23:22:25 +01:00
parent 077702eb73
commit 44b726f3f6

View File

@ -16,7 +16,7 @@ class Matrix{
inline Matrix Swap(const Matrix*);
inline void Multiply(float);
inline void Multiply(float); // TODO : Make this return a Matrix
inline Matrix Multiply(const Matrix*);
inline void Hadamard(const Matrix*);
@ -31,12 +31,12 @@ class Matrix{
inline Matrix Transpose();
// --- Operators
// Assign
// Operators
inline Matrix operator=(const Matrix*);
inline Matrix operator+(const Matrix*);
inline Matrix operator-(const Matrix*);
inline Matrix operator*(const Matrix*);
// TODO : Add float parameters for these
// Constructors
inline Matrix(int, int);