id summary reporter owner description type status milestone component version severity resolution keywords cc 3293 Addition of a matrix with resized identity matrix eva.ketelaer@… Gunter "Hello, I have an identity matrix of size m. I add it to another matrix. It works. Then a I resize both matrixes to size m-1 x m-1 and I cannot add the matrices. I used the following code: #include #include namespace ublas = boost::numeric::ublas; int main(int argc, char *argv[]) { int m=6; ublas::matrix H(m, m); ublas::identity_matrix I(m), J(m-1); for(int i=0; i