Split Vector based on indices from another vector

2 vues (au cours des 30 derniers jours)
Sara Mohamed
Sara Mohamed le 4 Avr 2017
I have a vecotr let's say x=1:200 which is 1x200. Now i have another vector let's say y that is for example 10x1 holds the points where I should split on using predefined range. For example, if I want 5 points before y and 10 points after y, so if I have y=[20;50;120], then the output should be like this [15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30]
[45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60]
[115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130]
I tried to set y1=y-5, and y2=y+10, then applied
A=x(1,y1:y2)
but always the first subarray is in the output. Is there any way to divide my array without a for loop because the original array is about 500,000 in length. Thanks in advance

Réponse acceptée

Thorsten
Thorsten le 4 Avr 2017
Modifié(e) : Thorsten le 4 Avr 2017
You can generate a cell array where the i'th cell is the desired range for the i'th value in y:
C = arrayfun(@(yi) x(yi-5:yi+10), y, 'UniformOutput', false);
If you want the subarrays as rows of a matrix, use
M = cell2mat(C);

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 4 Avr 2017
Modifié(e) : Andrei Bobrov le 4 Avr 2017
x = 1:200;
y=[20;50;120];
dy = 16;
z = zeros(size(x));
z(y - 5) = 1;
z(y + 10) = -1;
z1 = cumsum(z);
out = reshape(x(z1 ~= 0),dy,[])';

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by