who to replace a row in matrix ?

1 次查看(过去 30 天)
Firas Al-Kharabsheh
回答: li yan 2016-4-3
how to replace a row of matrix with the vector extract from another matrix for example
A = [ 1 0 1 1 0 1
1 0 1 0 1 1
1 1 1 0 1 0 ]
B = [ 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0 ]
and i want a function to move row from A to B but in the same position of row for example
  • i want to move the first row in A and the function must Put it in First row in B

回答(1 个)

li yan
li yan 2016-4-3
you just need to do like this
B(1,:) = A(1,:);

类别

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