Merge pull request 'Added some cool comments and deleted a stupid one' (#1) from gitea_admin/LeMA:main into main
Reviewed-on: leto/LeMA#1
This commit is contained in:
commit
a3db9391d3
@ -16,7 +16,7 @@ class Matrix{
|
|||||||
|
|
||||||
inline Matrix Swap(const 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 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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user