how to merge two vectors

2 ビュー (過去 30 日間)
Anusha
Anusha 2014 年 2 月 14 日
編集済み: Mischa Kim 2014 年 2 月 14 日
A= [ 0.567 6.345 1.789 0.678 0.4678] B= [0 0 0 0 0 0 0 ]
result will be
C= [0.567 6.345 1.789 0.678 0.4678 0 0]

採用された回答

Mischa Kim
Mischa Kim 2014 年 2 月 14 日
編集済み: Mischa Kim 2014 年 2 月 14 日
How about:
C = B + [A zeros(1,length(B)-length(A))]
assuming that by merge you mean add-merge. If it's just about adjusting the size of the vector, then use
C = [A zeros(1,length(B)-length(A))]

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStandard File Formats についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by