Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed-rtos mbed QEI
gemv< Rows, Cols > Class Template Reference
class for matrix-vector product using loop unrolling. More...
#include <tvmet/loop/Gemv.h>
Detailed Description
template<std::size_t Rows, std::size_t Cols>
class tvmet::loop::gemv< Rows, Cols >
class for matrix-vector product using loop unrolling.
using formula
- Example:
template<class T, std::size_t Rows, std::size_t Cols> inline void prod(const Matrix<T, Rows, Cols>& lhs, const Vector<T, Cols>& rhs, Vector<T, Rows>& dest) { for (std::size_t i = 0; i != Rows; ++i) { dest(i) = tvmet::loop::gemv<Rows, Cols>().prod(lhs, rhs, i); } }
Definition at line 54 of file loop/Gemv.h.
Generated on Wed Jul 13 2022 18:42:00 by
