MBDynCaseJose.mbd .mov

# Conflicts:
#	testapp/OndselSolver.cpp
This commit is contained in:
Aik-Siong Koh
2023-11-14 15:18:10 -07:00
parent 9e9a930622
commit aa8d647ce8
27 changed files with 6437 additions and 380 deletions

View File

@@ -22,6 +22,18 @@ namespace MbD {
}
return answer;
}
//template<typename T>
//inline FMatDsptr FullRow<T>::transposeTimesFullRow(FRowDsptr fullRow)
//{
// //"a*b = a(i)b(j)"
// auto nrow = (int)this->size();
// auto answer = std::make_shared<FullMatrixDouble>(nrow);
// for (int i = 0; i < nrow; i++)
// {
// answer->atiput(i, fullRow->times(this->at(i)));
// }
// return answer;
//}
template<>
FRowsptr<double> FullRow<double>::timesTransposeFullMatrix(std::shared_ptr<FullMatrixDouble> fullMat)