How to use for loop structure to calculate two vectors to dot product
5 ビュー (過去 30 日間)
古いコメントを表示
How to use for loop structure to calculate two vectors to dot product.
Please give an example.
0 件のコメント
回答 (1 件)
William
2021 年 2 月 20 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!