mirror of
https://github.com/xfarrow/lasd.git
synced 2025-06-05 21:49:14 +02:00
Library 5
- Added template - Matrix & MatrixVec completed
This commit is contained in:
14
librerie/exercise5/matrix/matrix.cpp
Normal file
14
librerie/exercise5/matrix/matrix.cpp
Normal 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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user