move values from uneven size matrix

1 view (last 30 days)
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);

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 7 May 2014
globbestseq(1,:) = gbestseq(1,:);

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!