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
Problem Comments
- 
		1 Comment
 
		Jihye Sofia Seo
    	on 9 Feb 2017
	
	
  	Thanks for adding the third test case. It is very interesting (still working on passing)
Solution Comments
Show commentsProblem Recent Solvers150
Suggested Problems
- 
         
Return the 3n+1 sequence for n
8403 Solvers
 - 
         
Sort a list of complex numbers based on far they are from the origin.
5730 Solvers
 - 
         
Matlab Basics - y as a function of x
512 Solvers
 - 
         
         
352 Solvers
 - 
         
Matlab Basics II - Create a vector with a repeated entry
244 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!