photo

Debnarayan Bhattacharya


2019 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

解決済み


Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]

5年弱 前

回答済み
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