move values from uneven size matrix

1 visualización (últimos 30 días)
Bathrinath
Bathrinath el 7 de Mayo de 2014
Respondida: Andrei Bobrov el 7 de Mayo de 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);

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 7 de Mayo de 2014
globbestseq(1,:) = gbestseq(1,:);

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by