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)
Afficher commentaires plus anciens
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
le 3 Avr 2019
D(D) = C;
would do it without a loop, depending whether you intend column first or row first filling.
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!