How to Update matrix values

30 vues (au cours des 30 derniers jours)
Arun Badigannavar
Arun Badigannavar le 2 Jan 2013
I have a matrix[2 2:2 2]I want to update these four values one by one ie[3 3:3 3],[4 4:4 4],[5 5:5 5] like thgis I want to update ,,,how can i achieve this with script?

Réponse acceptée

Sriram
Sriram le 2 Jan 2013
b = {};
a=[1 2;3 4]
for i=1:1:100;
a=a+1;
b = [b a];
end
  1 commentaire
Arun Badigannavar
Arun Badigannavar le 2 Jan 2013
exactly what i wanted

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 2 Jan 2013
  4 commentaires
Walter Roberson
Walter Roberson le 2 Jan 2013
If you want to see each updated value, you could remove the semi-colon from the addition
a(i) = a(i) + 1 %no semi-colon
Arun Badigannavar
Arun Badigannavar le 2 Jan 2013
ya i know this ,,but i want to save the value of a(i) from i =1 to i=100

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by