How can I substitute all zeros of a matrix with minimum value of the same matrix?

1 view (last 30 days)
How can I substitute all zeros of a matrix with minimum value of the same matrix?
  2 Comments
Stephen23
Stephen23 on 14 Jun 2020
Original question by Hamed Absharii 3rd September 2015, retrieved from Google Cache:
"How can I substitute all zeros of a matrix with minimum value of the same matrix?"
How can I substitute all zeros of a matrix with minimum value of the same matrix?

Sign in to comment.

Accepted Answer

Purushottama Rao
Purushottama Rao on 3 Sep 2015
 a(a==0)=min(a(a~=0))
  3 Comments
Star Strider
Star Strider on 3 Sep 2015
@Purushottama Rao — Don’t worry about the ‘spam’ flag. It happens to us all. You correctly flagged it so someone would have discovered it when they checked the ‘Flagged Content’. I cleared them and cleared your flags as well.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!