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
Solution Comments
Show comments
Loading...
Problem Recent Solvers514
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5816 Solvers
-
Remove the small words from a list of words.
1566 Solvers
-
How many trades represent all the profit?
619 Solvers
-
Relative ratio of "1" in binary number
1666 Solvers
-
492 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!
Please add more tests, because it is easy to cheat :)
ambiguous about what happens to numbers between [0,0.1] : ill-defined problem or poor-testsuite
kinda easy