Command to delete last row and column of a matrix

100 visualizzazioni (ultimi 30 giorni)
Hi,
Can anyone help me with the command to delete the last row and column of a 6 x 6 matrix?
Regards
Swati

Risposta accettata

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

Più risposte (1)

Bhaskar R
Bhaskar R il 28 Gen 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!

Translated by