I currently have a large single row array of chars... I also have two arrays, the first array has all the start indexes of data I would like to retrieve from the char array, the second array has all the end indexes for the data. How can I retrieve all these wanted values from my char array without using a loop?
So far I have tried doing
chararray(1,start(:):end(:))
but this will only retrieve the first value I would like!
Cheers!
for iter = 1:numel(start), chararray(1,start(iter):end(iter)), whereiterwould be the loop iterator?startandend? Intervals as instart(1):end(1),start(2):end(2)and so on.