22 #ifndef _BLAZE_MATH_STATICMATRIX_H_
23 #define _BLAZE_MATH_STATICMATRIX_H_
52 template<
typename Type
56 class Rand< StaticMatrix<Type,M,N,SO> >
62 explicit inline Rand();
69 inline operator StaticMatrix<Type,M,N,SO>()
const;
77 StaticMatrix<Type,M,N,SO> matrix_;
89 template<
typename Type
96 for(
size_t i=0UL; i<M; ++i ) {
97 for(
size_t j=0UL; j<N; ++j ) {
98 matrix_(i,j) = rand<Type>();
112 template<
typename Type