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 years 前

已回答
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 years 前 | 0