Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Seperating a vector based on another vector

조회 수: 1 (최근 30일)
Luffy
Luffy 2015년 11월 6일
마감: MATLAB Answer Bot 2021년 8월 20일
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 ?
  댓글 수: 2
Guillaume
Guillaume 2015년 11월 6일
편집: Guillaume 2015년 11월 6일
I assume the line
if A(j) == unique(i)
is meant to read
if B(j) == C(i)
Otherwise the code makes no sense.
Luffy
Luffy 2015년 11월 6일
yes,that's right

답변 (1개)

Guillaume
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
Another way of achieving the same result is to use accumarray:
[~, ~, locations] = unique(B);
D = accumarray(locations, A, [], @(v) {v});
D = arrayfun(@(c) A(B == c), unique(B), 'UniformOutput', false);

태그

Community Treasure Hunt

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

Start Hunting!

Translated by