Table Name in a loop

1 vue (au cours des 30 derniers jours)
Davin
Davin le 22 Juin 2015
Commenté : Davin le 22 Juin 2015
Hello,
I am struggling with this fairly simple loop.
I have an an array with years like the following :
2012
2012
2012
2013
2013
2014
2014
2015
In the loop i want to create a table for each year, but I am not able to do it in a proper way.
I did the following,
s = unique(array(:,1))
v = size(s,1)
for i = 1 :v
if certain conditions
TableName = sum all values in year concerned year.
end
end
So my question is very simple, how to make this TableName(should contain the year, for example Table2013) change to the year where the conditions is met. i tried to do something like
strcat('Table',num2str(array(i))) = sum all values in year concerned year.
This does not work at all.
Thank you very much
D

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 22 Juin 2015
Modifié(e) : Azzi Abdelmalek le 22 Juin 2015
data=[ 2012 2
2012 6
2012 9
2013 1
2013 8
2014 9
2014 9
2015 9]
[ii,jj,kk]=unique(data(:,1))
out=[ii accumarray(kk,data(:,2))]
  1 commentaire
Davin
Davin le 22 Juin 2015
Hello Azzi,
Thanks for your answer. Even if it was not exactly what I wanted to know( my question was more how to have a changing table name in a loop), you answer gave me some kind of solution to my issue. Thanks again for the prompt response.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements 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