Hi, I hope you don't mind a total newbie question.

I'm trying to make use of some c++ code from the web in a project of my own.
However this code uses boost libraries.
Specifically:

        #include <boost/numeric/ublas/matrix.hpp>
        using namespace boost::numeric::ublas;
So I need to install these. However I don't really know what I'm doing (!) Do I need to build/install all of Boost? As I've really not got a clue how to do this and the documentation isn't abundantly clear.

I tried just copying "matrix.hpp" into the project and typing #include <matrix.hpp> but it didn't work.
Any pointers to get me going greatfully appreciated.
I can work in MS VC 6 or 7
Thanks in advance

Dave