Printing particular rows and columns

327 views (last 30 days)
Hari
Hari on 26 Apr 2016
Commented: Harion 26 Apr 2016
我的计划是这样的
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?

Accepted Answer

Alessandro Masullo
Alessandro Masullo on 26 Apr 2016
start = data(2:end,18);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!