Problem 710. Replace Vector Elements
Replace all elements in a vector which are equal to or smaller than zero with 0.1.
Example:
A = [1 2 3 -1 0 2 -3 -80];
Answer:
B = [1 2 3 0.1 0.1 2 0.1 0.1];
Solution Stats
Problem Comments
- 
		3 Comments
 
		Grzegorz Knor
    	on 23 May 2012
	
	
  	Please add more tests, because it is easy to cheat :)
		G K
    	on 27 May 2013
	
	
  	ambiguous about what happens to numbers between [0,0.1] : ill-defined problem or poor-testsuite
		John Hovestadt
    	on 15 Dec 2016
	
	
  	kinda easy
Solution Comments
Show commentsProblem Recent Solvers498
Suggested Problems
- 
         
Remove all the words that end with "ain"
2544 Solvers
 - 
         
Given an unsigned integer x, find the largest y by rearranging the bits in x
1929 Solvers
 - 
         
Replace every 3rd element in a vector with 4
258 Solvers
 - 
         
         
5722 Solvers
 - 
         
Convert from Fahrenheit to Celsius
26841 Solvers
 
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!