Fixed typo and missing include

This commit is contained in:
2025-02-04 22:06:34 -05:00
parent ab2d9f002b
commit 9726ebbca0
2 changed files with 4 additions and 3 deletions

View File

@@ -67,8 +67,8 @@ public:
* @param result A buffer to store the result into
*/
template <uint8_t other_columns>
Matrix<rows, columns> &Mult(const Matrix<columns, other_columns> &other,
Matrix<rows, other_columns> &result) const;
Matrix<rows, other_columns> &Mult(const Matrix<columns, other_columns> &other,
Matrix<rows, other_columns> &result) const;
/**
* @brief Multiply the matrix by a scalar