how to initialize a matrix in c++ code example
Example: create matrix cpp
typedef std::vector<std::vector<double> > Matrix;
//with initialization
Matrix matrix1 = { {0.1,1.1,.2},
{.4,.5,.6},
{.8,.9,.10}
};
//just initiation (3x3)
Matrix matrix2(3, std::vector<double>(3) );