Problem 3091. Replace values under a limit

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

56.76% Correct | 43.24% Incorrect
Last Solution submitted on Sep 01, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers145

Suggested Problems

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!