MATLAB: Matrix manipulation

matrix

how to remove row(s) or column(s) of a matrix and save the new matrix with different name? and is there any limit on how big of matrix that can be processed by matlab?

Best Answer

Just use [] for any column or row that you want to remove.
Eq :
A = round(10*rand(10));
B = A;
B(3, :) = []