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.
Fork of Eurobot_2012_Secondary by
gemtv< Rows, Cols > Class Template Reference
class for transposed(matrix)-vector product using loop unrolling. More...
#include <tvmet/loop/Gemtv.h>
Detailed Description
template<std::size_t Rows, std::size_t Cols>
class tvmet::loop::gemtv< Rows, Cols >
class for transposed(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, Rows>& rhs, Vector<T, Cols>& dest) { for (std::size_t i = 0; i != Cols; ++i) { dest(i) = tvmet::loop::gemtv<Rows, Cols>().prod(lhs, rhs, i); } }
Definition at line 54 of file loop/Gemtv.h.
Generated on Tue Jul 12 2022 21:02:14 by
