#include <ellalgo/linear_algebra.hpp>
template<typename T>
Matrix2 class
Constructors, destructors, conversion operators
Public functions
Function documentation
template<typename T>
std::vector<T>& Matrix2<T>:: operator[](size_ t i)
Parameters | |
---|---|
i | The row index to access. |
Returns | A reference to the vector of elements at the specified row index. |
Returns a reference to the vector of elements at the specified row index.
template<typename T>
const std::vector<T>& Matrix2<T>:: operator[](size_ t i) const
Parameters | |
---|---|
i | The row index to access. |
Returns | A constant reference to the vector of elements at the specified row index. |
Returns a constant reference to the vector of elements at the specified row index.