Effacer les filtres
Effacer les filtres

Assigning value to an array

120 vues (au cours des 30 derniers jours)
Majbah
Majbah le 26 Mar 2014
Commenté : Majbah le 26 Mar 2014
Hello,
I want to assign value to an array. For example:
A=[0 0 0 0 0 0 0 0 0 0 0 0];
Value to Assign: A(1 2 11 12)=30;
After that, A=[30 30 0 0 0 0 0 0 0 0 0 0 30 30]
Now, I wanna assign the value A(2 10 12)=20 to the same array. But, value of the new array will be the sum of previous if the index matches.
Like: A(2)=30+20
But, A(10)=20
  2 commentaires
dpb
dpb le 26 Mar 2014
Do you have both index arrays initially? If so, make the intersection there and do the operation before the assignment.
Majbah
Majbah le 26 Mar 2014
Yes, I have the indices initially. If, I have multiple indices to assign to this array in this way, What can I do?
'intersect' works for two array only.

Connectez-vous pour commenter.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 26 Mar 2014
A=[0 0 0 0 0 0 0 0 0 0 0 0];
A([1 2 11 12])=30
A([2 10 12])=A([2 10 12])+20

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by