Effacer les filtres
Effacer les filtres

How to change values of elements in array at rows that meet a condition?

1 vue (au cours des 30 derniers jours)
Mason Scott
Mason Scott le 26 Juin 2015
For example if I have array
A = [1;2;3;4;5;6;7;8]
and I want to change all values at rows that are divisible by 2 to 0 to produce
A = [1;0;3;0;5;0;7;0]
How would I accomplish this?

Réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 26 Juin 2015
A(mod(A,2)==0)=0

Catégories

En savoir plus sur Elementary Math dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by