Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Seperating a vector based on another vector
조회 수: 1 (최근 30일)
이전 댓글 표시
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 ?
답변 (1개)
Guillaume
2015년 11월 6일
편집: Guillaume
2015년 11월 6일
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
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!