How do I map array values on a logical array
조회 수: 7 (최근 30일)
이전 댓글 표시
Hello,
I have a vector with numbers that i need to be remapped on different positions according to a logical bitmap array.
Example:
A = [3 6 8 1 0 -3];
B = [ 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0];
Result = [ 0 0 0 0 0 0 0 0 3 6 8 1 0 -3 0 0 0];
The number of ones in B always matches the length of A but in general length(B)~=length(A)
How can i do that without going through a for loop?
Thanks!
댓글 수: 0
채택된 답변
추가 답변 (1개)
Bruno Luong
2021년 1월 12일
편집: Bruno Luong
2021년 1월 12일
Result = zeros(size(B));
Result(B==1)=A
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!