How to create a array of boost matrices?
- by Venkata Adusumilli
How can I define a array of boost matrices as a member variable?
None of the following worked.
boost::numeric::ublas::matrix arrayM(1, 3)[arraySize];
boost::numeric::ublas::matrix(1, 3) arrayM[arraySize];
boost::numeric::ublas::matrix arrayM[arraySize](1, 3);
Thanks,
Ravi.