photo

Debnarayan Bhattacharya


2019 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

回答済み
how to find the sum of product of elements of an array in matlab
Easier way is: p = [1 2 33 44 -11 -22] i = 1:size(p, 2) out = p * i' Alternately, out = dot(p, i) I am not aware of a func...

5年弱 前 | 0