Dot Product of row vectors using loops not functions

32 Ansichten (letzte 30 Tage)
Jonathan Lam
Jonathan Lam am 26 Jan. 2022
Bearbeitet: Torsten am 26 Jan. 2022
I'm struggling to code the function of a dot product using only loops. Vector a1= [1 1 1] and a2=[2 2 2] and I understand the dot product is 6, but my resultant vector is [2 2 2] when I need it to be 6. Any thoughts?
  1 Kommentar
Torsten
Torsten am 26 Jan. 2022
Bearbeitet: Torsten am 26 Jan. 2022
Without any MATLAB functions:
result = 0;
for i=1:col1
result = result + a1(i)*a2(i);
end

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by