How do I insert a column with zeros in the second column of a mxn matrix?

3 visualizaciones (últimos 30 días)
Hello, I would like to insert a column with zeros in the second column of a (mxn) matrix, after which the matrix would be a mx(n+1) matrix. It would be really grateful, if someone could help me on this. Thank you.

Respuesta aceptada

Mischa Kim
Mischa Kim el 10 de Nov. de 2017
Editada: Mischa Kim el 10 de Nov. de 2017
Brute force:
A = [1 2 3; 4 5 6; 7 8 9]
A = [zeros(size(A,1),1) A];
A(:,[1 2]) = A(:,[2 1])

Más respuestas (0)

Categorías

Más información sobre Cell Arrays 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