Adding zeros to an array

1 visualización (últimos 30 días)
RDG
RDG el 9 de Sept. de 2013
Suppose I have 2 arrays:
A=[1 2 3 4;
2 3 4 5;
3 4 5 6];
B=[5 1 3;
1 3 4];
How can I append zeros to matrix B such that:
Output=[5 1 3 0;
1 3 4 0;
0 0 0 0];

Respuesta aceptada

Walter Roberson
Walter Roberson el 9 de Sept. de 2013
OutPut = B;
OutPut(3,4) = 0;

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