I'm wondering if it's possible to get the address of an individual element of a Boost uBLAS matrix?
That is
boost::numeric::ublas::matrix<char> bob(3,3);
some_function(&bob[2][2]);
Now, of course the second line won't work... but I'd like it to.
Any thoughts?
Thanks!