builds and links!

This commit is contained in:
John Dupuy
2023-11-05 16:45:35 -06:00
parent 796147aeda
commit f67e605f0d
7 changed files with 51 additions and 60 deletions

View File

@@ -313,15 +313,15 @@ namespace MbD {
}
return answer;
}
std::shared_ptr<FullMatrixFullMatrixDouble> FullMatrixFullMatrixDouble::timesTransposeFullMatrix(std::shared_ptr<FullMatrixFullMatrixDouble> fullMat)
{
int nrow = this->nrow();
auto answer = std::make_shared<FullMatrixFullMatrixDouble>(nrow);
for (int i = 0; i < nrow; i++) {
answer->at(i) = this->at(i)->timesTransposeFullMatrixForFMFMDsptr(fullMat);
}
return answer;
}
// std::shared_ptr<FullMatrixFullMatrixDouble> FullMatrixFullMatrixDouble::timesTransposeFullMatrix(std::shared_ptr<FullMatrixFullMatrixDouble> fullMat)
// {
// int nrow = this->nrow();
// auto answer = std::make_shared<FullMatrixFullMatrixDouble>(nrow);
// for (int i = 0; i < nrow; i++) {
// answer->at(i) = this->at(i)->timesTransposeFullMatrixForFMFMDsptr(fullMat);
// }
// return answer;
// }
std::shared_ptr<FullMatrixDouble> FullMatrixDouble::times(double a)
{
int m = this->nrow();