Command to delete last row and column of a matrix

112 views (last 30 days)
Hi,
Can anyone help me with the command to delete the last row and column of a 6 x 6 matrix?
Regards
Swati

Accepted Answer

Alex Mcaulley
Alex Mcaulley on 28 Jan 2020
A(:,end) = []; %Delete last column
A(end,:) = []; %Delete last row

More Answers (1)

Bhaskar R
Bhaskar R on 28 Jan 2020
your_matrix(end, :) = []; % deletes your matrix end(last) row
your_matrix(:, end) = []; % deletes your matrix end(last) column

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!