Given a vector of natural numbers
x = [1,2,3,...,N]
compute the sum of its elements by not stressing the machine too much :)
HINT: maybe sum(1:N) won't pass the test suite..
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers50
Suggested Problems
-
Select every other element of a vector
36149 Solvers
-
Relative ratio of "1" in binary number
1594 Solvers
-
square a vector-Given the variable x as your input, square it and put the result in y.
110 Solvers
-
2004 Solvers
-
Write a code that will follow the equation y = x * (x + x) * x.
358 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
When measuring performance, it is best to use huge numbers (N = randi(1701034) may return a small number, and it would be best that you use something like 1e7 + randi(1e5)). If N is small (and currently it can be), the trivial sum may perform better depending on which operations are running at the server in a given moment.