Addition of two unequal matrices

1 visualización (últimos 30 días)
adnan saeed
adnan saeed el 9 de Oct. de 2018
Comentada: M el 10 de Oct. de 2018
I have two matrices of binary variables, e.g A = [1 0;1 1;0 1] and B = [1;0;1].My first question is how to add these matrices, and the other question is I want to apply this statement on the result: A + B <=1. Thanks
  3 comentarios
adnan saeed
adnan saeed el 10 de Oct. de 2018
I know, but I want to add zeros to the the remaining position and add these two matrices.
M
M el 10 de Oct. de 2018
add zeros to the the remaining position
Can you explain what you mean exactly?

Iniciar sesión para comentar.

Respuestas (2)

KSSV
KSSV el 9 de Oct. de 2018
A = [1 0;1 1;0 1]
B = [1;0;1]
idx = A+B<=1

M
M el 9 de Oct. de 2018
Editada: M el 9 de Oct. de 2018
You cannot compute A+B. You can only compute the sum for each column:
A+B
ans =
2 1
1 1
1 2

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by