Why does this work? It's not in the documentation anywhere...
#include <iostream>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
int main()
{
boost::numeric::ublas::matrix<double> twoByTwoMat(2,2,-2);
std::cout << "This is the matrix: " << twoByTwoMat << std::endl;
return 0;
}
Output:
This is the matrix: [2,2]((-2,-2),(-2,-2))
It is defined in the
<boost/numeric/ublas/matrix.hpp>
header file.