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!

采纳的回答

Steve Eddins
Steve Eddins 2021-1-12
C = zeros(size(B));
C(logical(B)) = A

更多回答(1 个)

Bruno Luong
Bruno Luong 2021-1-12
编辑:Bruno Luong 2021-1-12
Result = zeros(size(B));
Result(B==1)=A

类别

Help CenterFile Exchange 中查找有关 Exponents and Logarithms 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by