Hi, I am still pretty new to Matlab.
I import data from a txt file into a cell-array (ccc). Now I want to retrieve multiple rows and columns:
e.g. myAnimals.monkeys = cell2mat(cellfun(@(x) str2num(char(x)),ccc(5:59,8:10),'UniformOutput',0));
which works fine.
but how do I retrieve e.g. columns 8 to 10 AND 15-18 at the same time?
many thanks, Robert

 채택된 답변

madhan ravi
madhan ravi 2020년 9월 24일

2 개 추천

Replace 8:10
With
[8:10, 15:18]

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

질문:

2020년 9월 24일

댓글:

2020년 9월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by