photo

Debnarayan Bhattacharya


Active since 2019

Followers: 0   Following: 0

Statistics

All
  • Solver
  • First Answer

View badges

Feeds

View by

Solved


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]

nästan 5 år ago

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

nästan 5 år ago | 0