For a vector x and number n, the goal is to find every element of x inferior to n and replace it by n.
Example
x= [ 1 2 3 4 5 1 2 4 6]
n=3
y_correct= [ 3 3 3 4 5 3 3 4 6]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers156
Suggested Problems
-
Find the two most distant points
2956 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
651 Solvers
-
Determine the number of odd integers in a vector
836 Solvers
-
Back to basics - mean of corner elements of a matrix
464 Solvers
-
Deleting an element in a matrix
494 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Thanks for adding the third test case. It is very interesting (still working on passing)