Effacer les filtres
Effacer les filtres

who to replace a row in matrix ?

1 vue (au cours des 30 derniers jours)
Firas Al-Kharabsheh
Firas Al-Kharabsheh le 3 Avr 2016
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 commentaire
John D'Errico
John D'Errico le 3 Avr 2016
Please stop asking the same question repeatedly.

Connectez-vous pour commenter.

Réponses (1)

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

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by