#include <armadillo>
#include <array>
#include "system/asserts.hh"
#include "system/logger.hh"
Go to the source code of this file.
|
template<class Type , uint nr, uint nc> |
using | Armor::ArmaMat = typename arma::Mat< Type >::template fixed< nr, nc > |
|
template<class Type , uint nr> |
using | Armor::ArmaVec = typename arma::Col< Type >::template fixed< nr > |
|
template<uint N> |
using | Armor::vec = ArmaVec< double, N > |
|
template<uint N, uint M> |
using | Armor::mat = ArmaMat< double, N, M > |
|
using | Armor::array = Array< double > |
|