For a given integer n (n>1), compute the sum f (i) (1 <= i <= n) where f (i) = 1 if n is odd and 2 otherwise.
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers286
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15793 Solvers
-
2419 Solvers
-
Back to basics 20 - singleton dimensions
279 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13841 Solvers
-
1015 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
could you give an example? it's kind of hard to figure out what you're asking for.
sorry, f(i) = 2 if i = even
The problem is asking for the sum of a function from 1 to n, where every odd input outputs 1, and even input outputs 2.