make lib shared; resolved FullRow method ;fixed spelling errors

This commit is contained in:
John Dupuy
2023-11-07 14:19:19 -06:00
parent d01bf20ef5
commit 274527102b
9 changed files with 12 additions and 11 deletions

View File

@@ -10,8 +10,8 @@
#include "FullMatrix.h"
namespace MbD {
template<typename T>
std::shared_ptr<FullMatrixDouble> FullRow<T>::transposeTimesFullRow(FRowsptr<T> fullRow)
template<>
std::shared_ptr<FullMatrixDouble> FullRow<double>::transposeTimesFullRow(FRowsptr<double> fullRow)
{
//"a*b = a(i)b(j)"
auto nrow = (int)this->size();