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

983 Solutions

513 Solvers

Last Solution submitted on Jun 02, 2026

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...