Compare commits

..

No commits in common. "a3db9391d3b9c4c96554bf8705b8994b1c7aa59f" and "077702eb73ffd90366d9b8e4eecd337d2f33e5d6" have entirely different histories.

View File

@ -16,7 +16,7 @@ class Matrix{
inline Matrix Swap(const Matrix*); inline Matrix Swap(const Matrix*);
inline void Multiply(float); // TODO : Make this return a Matrix inline void Multiply(float);
inline Matrix Multiply(const Matrix*); inline Matrix Multiply(const Matrix*);
inline void Hadamard(const Matrix*); inline void Hadamard(const Matrix*);
@ -31,12 +31,12 @@ class Matrix{
inline Matrix Transpose(); inline Matrix Transpose();
// Operators // --- Operators
// Assign
inline Matrix operator=(const Matrix*); inline Matrix operator=(const Matrix*);
inline Matrix operator+(const Matrix*); inline Matrix operator+(const Matrix*);
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 // Constructors
inline Matrix(int, int); inline Matrix(int, int);