ITK  4.8.0
Insight Segmentation and Registration Toolkit
WikiExamples/SimpleOperations/CreateVector.cxx
#include <itkVector.h>
int main(int, char*[])
{
typedef itk::Vector<double, 3> VectorType;
VectorType v;
v[0] = 1.0;
v[1] = 2.0;
v[2] = 3.0;
std::cout << "v: " << v << std::endl;
return EXIT_SUCCESS;
}