I have a cell array sized 14676x117 call myCellArray
.
I want to extract values stored in myCellArray{2:14676,1}
in an string array. runnning below script only returns a single string value and do not return an string array.
>> y= myCellArray{2:14676,1}
y =
"test1"
How can I convert this cell array range to and string array?
myCellArray
? Just a few elements, not all 14k of them of course. – Cris Luengo