Replace Row in a Matrix with an Vector
56 次查看(过去 30 天)
显示 更早的评论
I have generated a matrix M with M = magic(5), and I was asked to creat a new matrix M_new, where M_new is M with its last row replaced by a row vector. I was required to use only one line of code, so no equal signs...
Original question:
M_new = %Matrix M, but the last row is replaced by vector Row
% Hint: This can be done in one line of code
0 个评论
回答(2 个)
KALYAN ACHARJYA
2019-9-18
编辑:KALYAN ACHARJYA
2019-9-18
Replace Row in a Matrix with an Vector
matrix(n,:)=vector_data
n is row number, Ensured that vector_data length and row length are same
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!