Library 5

- Added template
- Matrix & MatrixVec completed
This commit is contained in:
Alessandro Ferro
2021-05-25 22:19:44 +02:00
parent b7c12b8c8a
commit b3ca7292c1
63 changed files with 7683 additions and 0 deletions

View File

@ -0,0 +1,14 @@
namespace lasd {
template <typename Data>
ulong Matrix<Data>::RowNumber() noexcept{
return rows;
}
template <typename Data>
ulong Matrix<Data>::ColumnNumber() noexcept{
return columns;
}
}