How to save a 1x2 matrix in a variable in each iteration?

2 vues (au cours des 30 derniers jours)
Siddique Tomal
Siddique Tomal le 13 Août 2016
Réponse apportée : Amos le 13 Août 2016
%suppose x=[4 3];
c=[];
for ite=1:80
for run=1:10
c(ite,run)=x;
end
end
i know this will show ' Subscripted assignment dimension mismatch' but as i need to save the value of x matrix in every iteration with the change of ite and run what can i do for it? and yes obviously the value of x matrix is also changing though here x has been shown as constant.
  1 commentaire
Image Analyst
Image Analyst le 13 Août 2016
You have a 1-by-2 matrix, and you want to save it somewhere in a 80-by-10 matrix. Where do you want to save it? In one place? In lots of places? If so, where? Like in columns 4 and 5 or where?????

Connectez-vous pour commenter.

Réponses (1)

Amos
Amos le 13 Août 2016
I am not really sure what you want. Does the following do the trick?
c={};
for ite=1:80
for run=1:10
c{ite,run}=x;
end
end

Catégories

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