Third commit

This commit is contained in:
Aik-Siong Koh
2023-04-28 17:42:51 -06:00
parent 8ca8eb7122
commit 43570d87cd
13 changed files with 130 additions and 0 deletions

11
MbDCode/FullMatrix.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "FullMatrix.h"
using namespace MbD;
FullMatrix<double>::FullMatrix(int m, int n) {
for (int i = 0; i < m; i++) {
auto* row = new FullRow<double>(n);
this->push_back(row);
}
}