Minor comment fix in Matrix.cpp

Fix comment to say (NxM times MxP).
This commit is contained in:
thatSteveFan 2021-11-08 15:30:39 -08:00 committed by GitHub
parent aa6db1e029
commit 834a59d89b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,7 +10,7 @@
namespace
{
// Multiply a NxM matrix by a NxP matrix.
// Multiply a NxM matrix by a MxP matrix.
template <int N, int M, int P, typename T>
auto MatrixMultiply(const std::array<T, N * M>& a, const std::array<T, M * P>& b)
-> std::array<T, N * P>