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
-
Remove all the words that end with "ain"
2717 Solvers
-
Maximum running product for a string of numbers
2258 Solvers
-
Replace NaNs with the number that appears to its left in the row.
3070 Solvers
-
Generate N equally spaced intervals between -L and L
954 Solvers
-
Create sequnce 1 4 9 16 25.........
419 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