i am building a class and one of its private members must be a matrix whose size is not know at the moment the constructor is invoked but later on during the execution of one of the class methods. i have tried declaring an empty Boost matrix as a private member of my class; then, within the method that uses this matrix I use resize to give this matrix it required size. doesn't seem to be working though....