m(3, 4) = 0.0; // Set row 3, column 4 of the matrix int a = m[0][0]; // Get the element of the matrix at row 0, column 0 v(2) = 4.0; // Set element 2 of the vector
exmat::Mat<DenseColVecCon<float, 3> > v1; v1 = 1, 2, 3; exmat::Mat<DenseMatCon<float, 2, 2> > m1; m1 = 1, 2 3, 4;