Clear Filters
Clear Filters

Replacing all values lower than 1 by 0.

22 views (last 30 days)
Hi there! I have a matrix A = 495*2973 where I should replace all the values which are <= 1 with 0.
May you know a quick way to do that? Or will I be obliged to make a loop?
Thanks a lot
P.

Accepted Answer

Arkadiusz
Arkadiusz on 10 Feb 2014
A(A<=1)=0
  1 Comment
Jan
Jan on 10 Feb 2014
Isn't this nice? I've struggeled the morning with a Windows batch scripts and now I deeply appreciat this kind of clean and clear Matlab codes.

Sign in to comment.

More Answers (1)

PaoloPa
PaoloPa on 10 Feb 2014
Great. I was working on a multiple sheet excel file and somehow didn't worked. Now I created two different files and it does work.
I am sorry being so low, but...
Thanks mate

Categories

Find more on Environment and Settings 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!