photo

Debnarayan Bhattacharya


Con actividad desde 2019

Followers: 0   Following: 0

Estadística

All
  • Solver
  • First Answer

Ver insignias

Feeds

Ver por

Resuelto


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]

casi 5 años hace

Respondida
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...

casi 5 años hace | 0