How can I multiply two different length vectors using for loops in Matlab ?

10 ビュー (過去 30 日間)
Sunil Kunjachan
Sunil Kunjachan 2016 年 12 月 17 日
編集済み: Jan 2016 年 12 月 17 日
ie. [1 2 3] and [1 2] The results should be a vector [3 6 9]. That is (1x1)+(1x2)=3, (1x2)+(2x2)=6,(1x3)+(2x3)=9. Appreciate the help

採用された回答

Jan
Jan 2016 年 12 月 17 日
編集済み: Jan 2016 年 12 月 17 日
A = [1 2 3]
B = [1 2]
C = sum(B.' * A, 1)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by