Command to delete last row and column of a matrix

41 vues (au cours des 30 derniers jours)
Swati Sarangi
Swati Sarangi le 28 Jan 2020
Commenté : Bhaskar R le 28 Jan 2020
Hi,
Can anyone help me with the command to delete the last row and column of a 6 x 6 matrix?
Regards
Swati

Réponse acceptée

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

Plus de réponses (1)

Bhaskar R
Bhaskar R le 28 Jan 2020
your_matrix(end, :) = []; % deletes your matrix end(last) row
your_matrix(:, end) = []; % deletes your matrix end(last) column
  2 commentaires
Swati Sarangi
Swati Sarangi le 28 Jan 2020
Hi,
Thanks for replying.
I just want to know the reason for assigning the final result to an empty matrix.
Regards
Swati

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by