find all elements that can be devided with 5

2 views (last 30 days)
i need to write function that takes one matrix and find all elements can be devided with 5 and replaces them with 5. in c++ for this problem you can write something like this if(a%5==0) a=5 thanks in advance

Accepted Answer

Adam
Adam on 17 Nov 2014
a( rem(a,5) == 0 ) = 5;

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!