x is a vector of unknown length
your function should return the index of the first element in the vector that is greater than 6. If all elements in x are less than 6, the function should return 'none'
example: x = [1 2 7 2 3 2 4 8 6]
output = 3
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers206
Suggested Problems
-
Is my wife right? Now with even more wrong husband
1347 Solvers
-
Project Euler: Problem 7, Nth prime
1775 Solvers
-
Find the area of the four walls
294 Solvers
-
find the surface area of a cube
569 Solvers
-
Rotate a matrix for 180 degree
188 Solvers
More from this Author28
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
From a usability point of view, returning a string to indicate nothing found is probably the worst. an empty value or 0 would be much better.
Guillaume, I would say that that depends upon the intended 'audience' for the output.