Azzera filtri
Azzera filtri

move values from uneven size matrix

1 visualizzazione (ultimi 30 giorni)
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);

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 7 Mag 2014
globbestseq(1,:) = gbestseq(1,:);

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by