Printing particular rows and columns

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?

 採用された回答

Alessandro Masullo
Alessandro Masullo 2016 年 4 月 26 日

0 投票

start = data(2:end,18);

1 件のコメント

Hari
Hari 2016 年 4 月 26 日
Thank you so much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrices and Arrays についてさらに検索

質問済み:

2016 年 4 月 26 日

コメント済み:

2016 年 4 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by