Ask Your Question

Revision history [back]

This can be done by defining first the size of matrix B as the number of columns that you want after deletion and same number of rows as in matrix A.

The command is A.col(a).copyTo(B.co(b)) and you must run a loop over command according to your copying pattern between two matrices.

This can be done by defining first the size of matrix B as the number of columns that you want after deletion and same number of rows as in matrix A.

The command is A.col(a).copyTo(B.co(b)) A.col(a).copyTo(B.col(b)) and you must run a loop over command according to your copying pattern between two matrices.