I have a successfully compiled program using Boost's implementation of uBLAS matricies. Alas, debugging with gdb is proving problematic as I could find no way to see the contents of my matrices while debugging. When I try to see an element of a matrix V (which does exist and is full of data), I get:
(gdb) print V(1,1)
Invalid data type for function to be called.
Is there a way around this?
Thanks!