Printing particular rows and columns

144 ビュー (過去 30 日間)
Hari
Hari 2016 年 4 月 26 日
コメント済み: Hari 2016 年 4 月 26 日
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 日
start = data(2:end,18);
  1 件のコメント
Hari
Hari 2016 年 4 月 26 日
Thank you so much!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by