Add a zero row or help multiply these matrixes
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
When you take the difference of a column you are short one row. I would like to add a zero to the beginning of this output. I want to do this because I want to multiply two matrices and I can't do it if they are uneven.
0 comentarios
Respuestas (1)
Image Analyst
el 8 de Jun. de 2017
Not exactly sure what you want, but in general:
To prepend a row:
[rows, columns] = size(m);
row0 = zeros(1, columns);
col0 = zeros(rows, 1);
m2 = [row0; m];
To append a row of 0s:
m2 = [m; row0]
To prepend a column of 0s:
m2 = [col0, m];
To append a column of 0s:
m2 = [m, col0];
0 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!