Deleting Rows in a Table as Determined by a Variable Value

2 vues (au cours des 30 derniers jours)
Jake Bowd
Jake Bowd le 15 Juil 2020
Commenté : Jake Bowd le 16 Juil 2020
I have a 189x317 table and a variable with a value (lets says 119).
I want to delete all rows from 199 onwards.
Please could someone advise.
Best wishes,

Réponse acceptée

madhan ravi
madhan ravi le 15 Juil 2020
TabLE(119:end, :) = []
  3 commentaires
madhan ravi
madhan ravi le 15 Juil 2020
From = 119;
TabLE(From:end, :) = []
Jake Bowd
Jake Bowd le 16 Juil 2020
Madhan ravi,
Thank you so much! I think I was getting my brackets confused!!!
That worked perfectly!!! Thanks :).
I have now put the above into a for loop ;).
for i=1:size(TabLE,2)
From(i) = [Variable(1,i)];
TabLE{1, i}(From(1,i):end, :) = [];
end

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by