Printing particular rows and columns

139 vues (au cours des 30 derniers jours)
Hari
Hari le 26 Avr 2016
Commenté : Hari le 26 Avr 2016
My part of a program looks like this
data = vertcat(data{:});
start = data(:,18);
This prints all the rows in the 18th column. How can I print all the data in 18th column from 2nd row?

Réponse acceptée

Alessandro Masullo
Alessandro Masullo le 26 Avr 2016
start = data(2:end,18);
  1 commentaire
Hari
Hari le 26 Avr 2016
Thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

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