Info
This question is closed. Reopen it to edit or answer.
Find the vector of medians
2 views (last 30 days)
Show older comments
say I have a vector
v =[1,2,3,-1,-2,-3,4,5,6,-7,-6,-3,-5,-4,...]
I want to make a vector which consists of the values of the occurrence of negative values.
when the pointer is at v[4] till the last negative value v[6]
next step I need to take the median from the vector v of the first occurrences of the negative values
Vm = [-2] % first occurrence
accordingly i want to repeat the procedure for v[10] till v[13] and determine the median again.
And add it up to the vector Vm = [-2,-3] and so on. The output should be like this: vm = [(median(v(4) to v(6)), (median(v(10) to v(13))),...]
so for this example the vector should look like this vm = [-2,-5,...]
Can you please help me out?
Thanks in advance
2 Comments
Answers (1)
Guillaume
on 15 Aug 2017
One way:
v = [1,2,3,-1,-2,-3,4,5,6,-7,-6,-3,-5,-4];
transitions = find(diff([0, v<0, 0]));
result = arrayfun(@(s,e) median(v(s:e)), transitions(1:2:end), transitions(2:2:end)-1)
Note that the second negative sequence in your example is [-7,-6,-3,-5,-4] so its median is -5.
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!