How to use for loop structure to calculate two vectors to dot product
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How to use for loop structure to calculate two vectors to dot product.
Please give an example.
0 Commenti
Risposte (1)
William
il 20 Feb 2021
a = 1:5;
b = 6:10;
c = 0;
for j = 1:5
c = c + a(j)*b(j);
end
However, this calculation can be done more simply with the dot() function:
c = dot(a,b);
or with the expression:
c = sum(a.*b);
1 Commento
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!