Finding a value of one vector based on the nonzero values of another vector

3 visualizaciones (últimos 30 días)
Given two vectors, how do you determine the value of A where B is 1? In this case, A=[5 4]. How do I do this?
A = [2 5 1 4];
B = [0 1 0 1];

Respuestas (3)

Arif Hoq
Arif Hoq el 8 de Dic. de 2022
Editada: Arif Hoq el 8 de Dic. de 2022
A = [2 5 1 4];
B = [0 1 0 1];
[I C]=find(B==1);
output=A(C)
output = 1×2
5 4

Image Analyst
Image Analyst el 8 de Dic. de 2022
If B is always guaranteed to be 0 or 1, you can do this
A = [2 5 1 4];
B = [0 1 0 1]; % B is a double here.
A = A(logical(B)) % Need to cast B to logical
A = 1×2
5 4
If B can be anything and you want to get A where B is not equal to zero:
A = [2 5 1 4];
B = [0 23 0 341];
A = A(B ~= 0)
A = 1×2
5 4

Voss
Voss el 8 de Dic. de 2022
A = A(B == 1)

Categorías

Más información sobre Create Block Masks en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by