Info
This question is closed. Reopen it to edit or answer.
Seperating a vector based on another vector
1 view (last 30 days)
Show older comments
I have two arrays A & B.vector A has to be separated & processed based on B's vector value.For the length that B's value remains same,A has to be taken till that value & processed.
Example:-
A = 1:10;
B = [5 5 5 5 5 10 10 10 10 10];
%so B's first 5 values are same.so A's first 5 values should be assigned to a different array on which i'll do processing.
%Again B's next 5 values are same,so A's next 5 values are to be assigned to that another array on which i can process.
%My approach:-
C = unique(B);
for i = 1:length(C)
for j = 1:length(A)
if A(j) == unique(i)
D(j) = A(j)
else
D(j) = [ ]
end
end
% do processing on D
end
Can this be done in any better way ?
Answers (1)
Guillaume
on 6 Nov 2015
Edited: Guillaume
on 6 Nov 2015
For a start your inner j loop is completely unnecessary, use logical vector indexing:
C = unique(B);
for idx = 1:numel(C) %avoid using i, it's a matlab function
D{idx} = A(B == C(idx)); %B == C(idx) is a logical vector, used to index A
end
[~, ~, locations] = unique(B);
D = accumarray(locations, A, [], @(v) {v});
D = arrayfun(@(c) A(B == c), unique(B), 'UniformOutput', false);
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!