find all elements that can be devided with 5

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

 Réponse acceptée

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

Plus de réponses (0)

Catégories

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by