Hi,

I have recently learnt how to use C++ vectors. I need to use a vector for the following structure (using the readily-available vector library):

Code:
struct coord {
 double x;
double y;
double z;
};

Thanks a lot in advance.