Effacer les filtres
Effacer les filtres

delete a row, or column.

2 vues (au cours des 30 derniers jours)
ck
ck le 5 Juil 2016
Commenté : ck le 5 Juil 2016
I have a matrix 'b' with 1201 rows and 1 column(1203x1), but the last row is not needed and I want to delete the last row making it (1200x1).
Can I use any function for this?
Thank you

Réponse acceptée

James Tursa
James Tursa le 5 Juil 2016
Modifié(e) : James Tursa le 5 Juil 2016
Not sure if you have a 1201x1 or a 1203x1. But to delete the last row:
b(end,:) = [];
To retain the first 1200 rows:
b = b(1:1200,:);
If b is 1201x1 these will give the same result.
Since you have a column vector I really didn't need the : for the columns, but decided to include it since that form will work for a matrix also.
  1 commentaire
ck
ck le 5 Juil 2016
Thanks ! it helped!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Resizing and Reshaping Matrices 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