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

15 Ansichten (letzte 30 Tage)
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

Akzeptierte Antwort

Jan
Jan am 17 Dez. 2016
Bearbeitet: Jan am 17 Dez. 2016
A = [1 2 3]
B = [1 2]
C = sum(B.' * A, 1)

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by