Replace numbers into a vector starts at the center? Looking for general format

1 回表示 (過去 30 日間)
Fat Man
Fat Man 2019 年 6 月 14 日
コメント済み: Fat Man 2019 年 6 月 14 日
Suppose I have a vector vec with the length will be an odd number.
Then I have another vector vec1 with the length is also odd and less than the length of vec.
I want to put the elements of vec1 into vec that starts at the center of vec and go to both sides from the center.
I'm looking for a general format in case when the length is much more larger !!!
How can I do that?
Ex: This is just an example when length(vec) is 5. I know vec(2:4) = vec1
I'm looking for a general format in case when the length is much more larger !!!
vec = 0 0 0 0 0
vec1 = 1 1 1
new_vec = 0 1 1 1 0
Thank you!

採用された回答

per isakson
per isakson 2019 年 6 月 14 日
編集済み: per isakson 2019 年 6 月 14 日
Run this
%%
vec = [ 0 0 0 0 0 ];
vec1 = [ 1 1 1 ];
new_vec = [ 0 1 1 1 0 ];
%%
len = length( vec );
len1 = length( vec1 );
%%
out = vec;
out( (len+1)/2 - (len1-1)/2 : (len+1)/2 + (len1-1)/2 ) = vec1;
and peek
>> out
out =
0 1 1 1 0
>>

その他の回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2019 年 6 月 14 日
vec =[0 0 0 0 0 ];
vec1 = [1 1 1];
z = pad(join(string(vec1),''),numel(vec),'both','0');
out = z{:} - '0'

Community Treasure Hunt

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

Start Hunting!

Translated by