Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

Both are arrays and i need to fill those 1 values in D variable in sequence with the values in C How can i use for loop and conditional statement to make if happen

1 vue (au cours des 30 derniers jours)
C =
0.3400
0.2500
0.3300
0.3300
0.2200
0.5600
>> D
D =
0 1 1
0 1 1
1 1 0
  2 commentaires
Adam
Adam le 3 Avr 2019
D(D) = C;
would do it without a loop, depending whether you intend column first or row first filling.
Jos (10584)
Jos (10584) le 3 Avr 2019
and D(D==1) = C will work when D is not a logical array

Réponses (0)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by