move values from uneven size matrix

1 回表示 (過去 30 日間)
Bathrinath
Bathrinath 2014 年 5 月 7 日
回答済み: Andrei Bobrov 2014 年 5 月 7 日
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);

採用された回答

Andrei Bobrov
Andrei Bobrov 2014 年 5 月 7 日
globbestseq(1,:) = gbestseq(1,:);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by