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!

link|improve this question

68% accept rate
feedback

2 Answers

Wouldn't using the address of the return value of the following operator be simpler? And independent of the matrix layout?

reference operator () (size_type i, size_type j)

For example:

some_function(&bob(2,2));
link|improve this answer
I'm not sure I follow you? Could you be more explicit or explanatory? Sorry :-( – Richard Apr 19 at 4:56
Added example to the answer. – Anonymous Apr 19 at 7:01
Fixed the indices in question in the question. – Richard Apr 19 at 15:08
feedback

by default, the inner representation of a matrix is a row major 1D array.

some_function(&bob.data()[i*ncol+j] would work

link|improve this answer
1  
By default in uBLAS? Which part of the Boost uBLAS specification indicates that this will work? – Richard Apr 19 at 4:55
m.data() Returns a reference to the underlying dense storage. boost.org/doc/libs/1_46_0/libs/numeric/ublas/doc/…. As for the storage, there are 2 types: row_major or column_major, default is row_major. I forgot where it was specified. I once called lapack routines with ublas matrix, as far as I am concerned, get the pointer of 1D array by m.data() works. – pem May 4 at 8:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.