Add a row to a matrix where find==1

1 visualización (últimos 30 días)
Alessandro Masullo
Alessandro Masullo el 17 de En. de 2012
Hello! I've a matrix A and a vector f:
A = 9 6 5
9 10 9
8 7 1
2 9 2
7 5 2
f = [0; 0; 1; 1; 0]
I want to add the matrix A rows to a matrix B, where f == 1. It is very simple with a for cycle, but I need not to use it, because of very large matrix.
B = [8 7 1
2 9 2]
How can I do that? Thanks.

Respuesta aceptada

Grzegorz Knor
Grzegorz Knor el 17 de En. de 2012
B + A(logical(f),:)

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by