Effacer les filtres
Effacer les filtres

Put array data inside another array without a for cycle

3 vues (au cours des 30 derniers jours)
Dario
Dario le 18 Déc 2017
I have 2 array of equal dimension: 1440000x1. I need to put in the 2nd array the value 0 when there is the value 0 in the first array (in the same position). There is a quick way to do this not using a for cycle?

Réponse acceptée

Guillaume
Guillaume le 18 Déc 2017
Very simply:
array2(array1 == 0) = 0

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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