sum of multiplication for a vector and matrix

24 ビュー (過去 30 日間)
Abbi Hashem
Abbi Hashem 2019 年 6 月 27 日
編集済み: Bruno Luong 2019 年 6 月 27 日
Say I have the following matrix and vector:
A = [ 2,3; 1,4] b= [ 5 , 7 ]
I want a code of the sum of the multiplication, such that each element of the matrix's first row are multiplied by the 1st cell of the vector, and the elements of the matrix's second row are multiplied by the 2nd cell of the vector, as follows:
2*5+3*5+1*7+4*7
( I will need this for a 1000*1000 matrix and a 1*1000 vector, but i used this example to clarify )

回答 (2 件)

James Tursa
James Tursa 2019 年 6 月 27 日
result = sum(b*A);

Bruno Luong
Bruno Luong 2019 年 6 月 27 日
編集済み: Bruno Luong 2019 年 6 月 27 日
b*sum(A,2)
Less operations than the first solution.

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by