Effacer les filtres
Effacer les filtres

move values from uneven size matrix

1 vue (au cours des 30 derniers jours)
Bathrinath
Bathrinath le 7 Mai 2014
I have created 100x6 matrix with zeros. I need to move the first row of gbestseq to first row of globbestseq and remaining rows in globbestseq has to be zero. Here matrix sizes are not same.Suggest some points
n=6; gbestseq=[1,3,2,5,4,6; 2,3,1,4,6,5; 3,2,1,5,4,6;]; globbestseq=zeros(100,n);

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 7 Mai 2014
globbestseq(1,:) = gbestseq(1,:);

Plus de réponses (0)

Catégories

En savoir plus sur Creating and Concatenating Matrices 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