How to create a matrix by inserting a vector into another matrix?

12 次查看(过去 30 天)
Hello,
Let's say I have matrix A, and matrix B. Matrix A is a 5x5, and Matrix B is a 5x1. I would like to take all of matrix B and insert it into the first column of matrix A, replacing those values in matrix A BUT making a completely new matrix, D, leaving A and B unchanged.

采纳的回答

David Young
David Young 2015-1-28
D = A;
D(:,1) = B;
or
D = [B A(:, 2:end)];

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by