Hi
Please consider the following code:
mxT = Matrix( 50, 60, 0 ); // matrix size 50x60
// some processing with mxT
mxT = Matrix( 80, 100, -1 ); // matrix size 80x100
My question:
Is the memory held by the 50x60 matrix released when mxT is assigned to the newly created matrix (80x100)?